overleaf/services/notifications/package.json

57 lines
1.9 KiB
JSON
Raw Normal View History

2016-01-14 07:35:16 -05:00
{
"name": "notifications-sharelatex",
"version": "0.0.1",
"description": "An API to handle user notifications",
"main": "app.js",
"scripts": {
"start": "node $NODE_APP_OPTIONS app.js",
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
2018-10-03 08:46:00 -04:00
"nodemon": "nodemon --config nodemon.json",
"lint": "node_modules/.bin/eslint .",
2020-03-26 08:16:08 -04:00
"format": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --list-different",
"format:fix": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --write"
2016-01-14 07:35:16 -05:00
},
"author": "",
"license": "ISC",
"dependencies": {
2020-03-26 08:21:44 -04:00
"async": "^2.6.3",
2020-03-26 08:21:02 -04:00
"coffee-script": "^1.12.7",
2016-01-14 07:35:16 -05:00
"express": "3.1.0",
2020-03-26 08:21:02 -04:00
"logger-sharelatex": "^1.9.1",
"metrics-sharelatex": "^2.6.2",
2016-06-01 12:40:56 -04:00
"mongojs": "^2.4.0",
2016-01-14 07:35:16 -05:00
"node-statsd": "0.0.3",
2020-03-26 08:21:02 -04:00
"request": "^2.88.2",
"settings-sharelatex": "^1.1.0",
2020-03-26 08:21:02 -04:00
"underscore": "1.9.2"
2016-01-14 07:35:16 -05:00
},
"devDependencies": {
2020-03-26 08:21:02 -04:00
"babel-eslint": "^10.1.0",
"bunyan": "^1.8.12",
"chai": "^4.2.0",
2020-03-26 08:16:08 -04:00
"eslint": "^6.8.0",
2020-03-26 08:21:02 -04:00
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-chai-friendly": "^0.5.0",
2020-03-26 08:16:08 -04:00
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
2020-03-26 08:16:08 -04:00
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
2020-03-26 08:21:02 -04:00
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
2018-10-03 08:53:36 -04:00
"mocha": "^4.1.0",
"prettier": "^1.19.1",
"prettier-eslint-cli": "^5.0.0",
"sandboxed-module": "^2.0.3",
"sinon": "^6.3.5"
2016-01-14 07:35:16 -05:00
}
}