2016-01-14 12:35:16 +00:00
|
|
|
{
|
2022-02-07 11:46:51 +00:00
|
|
|
"name": "@overleaf/notifications",
|
2016-01-14 12:35:16 +00:00
|
|
|
"description": "An API to handle user notifications",
|
2022-02-07 11:46:51 +00:00
|
|
|
"private": true,
|
2016-01-14 12:35:16 +00:00
|
|
|
"main": "app.js",
|
|
|
|
"scripts": {
|
2020-01-13 18:35:22 +00: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 12:46:00 +00:00
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
2022-02-07 11:46:51 +00: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 12:35:16 +00:00
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2022-10-27 15:35:43 +00:00
|
|
|
"@overleaf/logger": "*",
|
|
|
|
"@overleaf/metrics": "*",
|
|
|
|
"@overleaf/settings": "*",
|
2022-06-21 08:07:14 +00:00
|
|
|
"async": "^3.2.2",
|
2020-03-26 14:17:07 +00:00
|
|
|
"body-parser": "^1.19.0",
|
2021-07-12 16:35:46 +00:00
|
|
|
"bunyan": "^1.8.15",
|
2023-01-24 14:21:39 +00:00
|
|
|
"express": "^4.18.2",
|
2020-03-26 14:17:07 +00:00
|
|
|
"method-override": "^3.0.0",
|
2022-12-20 14:55:25 +00:00
|
|
|
"mongodb": "^4.11.0",
|
|
|
|
"request": "^2.88.2"
|
2016-01-14 12:35:16 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-07 11:46:51 +00:00
|
|
|
"chai": "^4.3.6",
|
2021-07-13 10:55:15 +00:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2023-01-16 15:55:29 +00:00
|
|
|
"mocha": "^10.2.0",
|
2022-02-07 11:46:51 +00:00
|
|
|
"sandboxed-module": "^2.0.4",
|
|
|
|
"sinon": "^9.2.4"
|
2016-01-14 12:35:16 +00:00
|
|
|
}
|
|
|
|
}
|