2015-10-06 11:41:35 -04:00
|
|
|
{
|
2022-02-07 06:46:51 -05:00
|
|
|
"name": "@overleaf/contacts",
|
2015-10-06 11:41:35 -04:00
|
|
|
"description": "An API for tracking contacts of a user",
|
2022-02-07 06:46:51 -05:00
|
|
|
"private": true,
|
2022-12-16 05:42:39 -05:00
|
|
|
"type": "module",
|
2022-02-07 06:46:51 -05:00
|
|
|
"main": "app.js",
|
2017-12-29 03:11:53 -05:00
|
|
|
"scripts": {
|
2023-12-07 05:05:50 -05:00
|
|
|
"start": "node app.js",
|
2022-12-16 05:42:39 -05:00
|
|
|
"test:acceptance:_run": "LOG_LEVEL=fatal mocha --loader=esmock --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
|
2020-02-17 02:35:05 -05:00
|
|
|
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
2022-12-16 05:42:39 -05:00
|
|
|
"test:unit:_run": "LOG_LEVEL=fatal mocha --loader=esmock --recursive --reporter spec $@ test/unit/js",
|
2020-02-17 02:35:05 -05:00
|
|
|
"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"
|
2017-12-29 03:11:53 -05:00
|
|
|
},
|
2015-10-06 11:41:35 -04:00
|
|
|
"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-23 07:49:40 -04:00
|
|
|
"body-parser": "^1.19.0",
|
2021-07-12 12:35:50 -04:00
|
|
|
"bunyan": "^1.8.15",
|
2024-04-22 08:12:16 -04:00
|
|
|
"express": "^4.19.2",
|
2023-10-23 04:21:16 -04:00
|
|
|
"mongodb": "^6.1.0",
|
2020-03-23 07:49:40 -04:00
|
|
|
"request": "~2.88.2",
|
2021-05-07 01:21:44 -04:00
|
|
|
"underscore": "~1.13.1"
|
2015-10-06 11:41:35 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-07 06:46:51 -05:00
|
|
|
"chai": "^4.3.6",
|
2021-07-13 06:55:18 -04:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2024-02-16 10:57:12 -05:00
|
|
|
"esmock": "^2.6.3",
|
2023-01-16 10:55:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
2020-03-23 07:56:42 -04:00
|
|
|
"sinon": "~9.0.1",
|
2024-01-11 08:25:25 -05:00
|
|
|
"sinon-chai": "^3.7.0",
|
|
|
|
"typescript": "^5.0.4"
|
2015-10-06 11:41:35 -04:00
|
|
|
}
|
|
|
|
}
|