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": {
|
2023-12-07 05:05:50 -05:00
|
|
|
"start": "node app.js",
|
2020-01-13 13:35:22 -05:00
|
|
|
"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",
|
2023-12-07 05:05:50 -05:00
|
|
|
"nodemon": "node --watch app.js",
|
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'",
|
2024-01-16 14:24:03 -05:00
|
|
|
"lint:fix": "eslint --fix .",
|
|
|
|
"types:check": "tsc --noEmit"
|
2016-01-14 07:35:16 -05:00
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2022-10-27 11:35:43 -04:00
|
|
|
"@overleaf/logger": "*",
|
|
|
|
"@overleaf/metrics": "*",
|
|
|
|
"@overleaf/settings": "*",
|
2024-05-31 05:51:51 -04:00
|
|
|
"async": "^3.2.5",
|
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",
|
2024-04-22 08:12:16 -04:00
|
|
|
"express": "^4.19.2",
|
2020-03-26 10:17:07 -04:00
|
|
|
"method-override": "^3.0.0",
|
2023-10-23 04:45:57 -04:00
|
|
|
"mongodb": "^6.1.0",
|
|
|
|
"mongodb-legacy": "^6.0.1",
|
2022-12-20 09:55:25 -05:00
|
|
|
"request": "^2.88.2"
|
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",
|
2023-01-16 10:55:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
2022-02-07 06:46:51 -05:00
|
|
|
"sandboxed-module": "^2.0.4",
|
2024-01-11 08:25:25 -05:00
|
|
|
"sinon": "^9.2.4",
|
|
|
|
"typescript": "^5.0.4"
|
2016-01-14 07:35:16 -05:00
|
|
|
}
|
|
|
|
}
|