2016-01-14 07:35:16 -05:00
|
|
|
{
|
2022-02-07 06:46:51 -05:00
|
|
|
"name": "@overleaf/notifications",
|
2016-01-14 07:35:16 -05:00
|
|
|
"description": "An API to handle user notifications",
|
2022-02-07 06:46:51 -05:00
|
|
|
"private": true,
|
2016-01-14 07:35:16 -05:00
|
|
|
"main": "app.js",
|
|
|
|
"scripts": {
|
2020-01-13 13:35:22 -05:00
|
|
|
"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",
|
2022-02-07 06:46:51 -05:00
|
|
|
"lint": "eslint --max-warnings 0 --format unix .",
|
|
|
|
"format": "prettier --list-different $PWD/'**/*.js'",
|
|
|
|
"format:fix": "prettier --write $PWD/'**/*.js'",
|
|
|
|
"lint:fix": "eslint --fix ."
|
2016-01-14 07:35:16 -05:00
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2021-12-14 08:00:35 -05:00
|
|
|
"@overleaf/logger": "^3.1.0",
|
|
|
|
"@overleaf/metrics": "^4.0.0",
|
2022-02-07 06:46:51 -05:00
|
|
|
"@overleaf/settings": "^3.0.0",
|
2022-06-21 04:07:14 -04:00
|
|
|
"async": "^3.2.2",
|
2020-03-26 10:17:07 -04:00
|
|
|
"body-parser": "^1.19.0",
|
2021-07-12 12:35:46 -04:00
|
|
|
"bunyan": "^1.8.15",
|
2020-03-26 10:17:07 -04:00
|
|
|
"express": "4.17.1",
|
|
|
|
"method-override": "^3.0.0",
|
2020-08-31 04:58:47 -04:00
|
|
|
"mongodb": "^3.6.0",
|
2020-03-26 08:21:02 -04:00
|
|
|
"request": "^2.88.2",
|
2021-05-07 01:10:51 -04:00
|
|
|
"underscore": "1.13.1"
|
2016-01-14 07:35:16 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-07 06:46:51 -05:00
|
|
|
"chai": "^4.3.6",
|
2021-07-13 06:55:15 -04:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2022-02-07 06:46:51 -05:00
|
|
|
"mocha": "^8.4.0",
|
|
|
|
"sandboxed-module": "^2.0.4",
|
|
|
|
"sinon": "^9.2.4"
|
2016-01-14 07:35:16 -05:00
|
|
|
}
|
|
|
|
}
|