overleaf/services/notifications/package.json

41 lines
1.4 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 --max-warnings 0 --format unix .",
"format": "../../node_modules/.bin/prettier --list-different $PWD/'**/*.js'",
"format:fix": "../../node_modules/.bin/prettier --write $PWD/'**/*.js'",
"lint:fix": "../../node_modules/.bin/eslint --fix ."
2016-01-14 07:35:16 -05:00
},
"author": "",
"license": "ISC",
"dependencies": {
"@overleaf/logger": "^3.1.0",
"@overleaf/metrics": "^4.0.0",
"@overleaf/settings": "^2.1.1",
2020-03-26 08:21:44 -04:00
"async": "^2.6.3",
2020-03-26 10:17:07 -04:00
"body-parser": "^1.19.0",
"bunyan": "^1.8.15",
2020-03-26 10:17:07 -04:00
"express": "4.17.1",
"method-override": "^3.0.0",
"mongodb": "^3.6.0",
2020-03-26 08:21:02 -04:00
"request": "^2.88.2",
"underscore": "1.13.1"
2016-01-14 07:35:16 -05:00
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.3.2",
"sandboxed-module": "^2.0.3",
"sinon": "^9.0.1"
2016-01-14 07:35:16 -05:00
}
}