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": {
|
2020-02-17 02:35:05 -05:00
|
|
|
"start": "node $NODE_APP_OPTIONS 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",
|
2018-10-03 06:46:35 -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 ."
|
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": "*",
|
2022-06-21 04:07:14 -04:00
|
|
|
"async": "^3.2.2",
|
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",
|
2020-03-23 07:49:40 -04:00
|
|
|
"express": "^4.17.1",
|
2022-12-16 05:42:39 -05:00
|
|
|
"mongodb": "^4.12.1",
|
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",
|
2022-12-16 05:42:39 -05:00
|
|
|
"esmock": "^2.1.0",
|
2022-02-07 06:46:51 -05:00
|
|
|
"mocha": "^8.4.0",
|
2020-03-23 07:56:42 -04:00
|
|
|
"sinon": "~9.0.1",
|
2022-12-16 05:42:39 -05:00
|
|
|
"sinon-chai": "^3.7.0"
|
2015-10-06 11:41:35 -04:00
|
|
|
}
|
|
|
|
}
|