2015-10-06 11:41:35 -04:00
|
|
|
{
|
|
|
|
"name": "contacts-sharelatex",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "An API for tracking contacts of a user",
|
|
|
|
"author": "ShareLaTeX <team@sharelatex.com>",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/sharelatex/contacts-sharelatex.git"
|
|
|
|
},
|
2017-12-29 03:11:53 -05:00
|
|
|
"scripts": {
|
2020-02-17 02:35:05 -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 06:46:35 -04:00
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
2021-12-16 04:04:32 -05:00
|
|
|
"lint": "../../node_modules/.bin/eslint --max-warnings 0 --format unix .",
|
|
|
|
"format": "../../node_modules/.bin/prettier --list-different $PWD/'**/*.js'",
|
|
|
|
"format:fix": "../../node_modules/.bin/prettier --write $PWD/'**/*.js'",
|
|
|
|
"lint:fix": "../../node_modules/.bin/eslint --fix ."
|
2017-12-29 03:11:53 -05:00
|
|
|
},
|
2015-10-06 11:41:35 -04:00
|
|
|
"dependencies": {
|
2021-12-14 08:00:35 -05:00
|
|
|
"@overleaf/logger": "^3.1.0",
|
|
|
|
"@overleaf/metrics": "^4.0.0",
|
2021-07-12 12:47:20 -04:00
|
|
|
"@overleaf/settings": "^2.1.1",
|
2020-03-23 07:50:27 -04:00
|
|
|
"async": "^2.6.3",
|
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",
|
2020-08-21 11:30:18 -04:00
|
|
|
"mongodb": "^3.6.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": {
|
2021-07-13 06:55:18 -04:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
|
|
|
"mocha": "^8.3.2",
|
2020-03-23 07:56:42 -04:00
|
|
|
"sandboxed-module": "~2.0.3",
|
|
|
|
"sinon": "~9.0.1",
|
|
|
|
"timekeeper": "2.2.0"
|
2015-10-06 11:41:35 -04:00
|
|
|
}
|
|
|
|
}
|