2014-08-15 05:50:36 -04:00
|
|
|
{
|
2022-02-07 06:46:51 -05:00
|
|
|
"name": "@overleaf/chat",
|
|
|
|
"description": "The backend API that powers Overleaf chat",
|
|
|
|
"private": true,
|
|
|
|
"main": "app.js",
|
2017-12-29 03:05:03 -05:00
|
|
|
"scripts": {
|
2019-01-04 06:05:35 -05:00
|
|
|
"start": "node $NODE_APP_OPTIONS app.js",
|
|
|
|
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
|
|
|
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
|
2018-01-29 09:21:22 -05:00
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
2019-01-04 06:05:35 -05:00
|
|
|
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
|
|
|
|
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/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'",
|
|
|
|
"lint:fix": "eslint --fix ."
|
2017-12-29 03:05:03 -05:00
|
|
|
},
|
2014-08-15 05:50:36 -04:00
|
|
|
"dependencies": {
|
2021-12-14 08:00:35 -05:00
|
|
|
"@overleaf/logger": "^3.1.0",
|
|
|
|
"@overleaf/metrics": "^4.0.0",
|
2022-02-07 06:46:51 -05:00
|
|
|
"@overleaf/settings": "^3.0.0",
|
2022-06-21 04:07:14 -04:00
|
|
|
"async": "^3.2.2",
|
2020-03-06 13:33:17 -05:00
|
|
|
"body-parser": "^1.19.0",
|
|
|
|
"express": "4.17.1",
|
2021-09-08 04:21:57 -04:00
|
|
|
"mongodb": "^3.6.0"
|
2014-08-15 05:50:36 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-03-06 11:31:40 -05:00
|
|
|
"acorn": "^7.1.1",
|
2020-03-06 11:32:59 -05:00
|
|
|
"ajv": "^6.12.0",
|
2022-02-07 06:46:51 -05:00
|
|
|
"chai": "^4.3.6",
|
2021-07-13 06:55:19 -04:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2022-02-07 06:46:51 -05:00
|
|
|
"mocha": "^8.4.0",
|
2021-09-08 04:21:57 -04:00
|
|
|
"request": "^2.88.2",
|
2022-02-07 06:46:51 -05:00
|
|
|
"sandboxed-module": "^2.0.4",
|
|
|
|
"sinon": "^9.2.4",
|
2020-02-12 08:49:00 -05:00
|
|
|
"timekeeper": "^2.2.0"
|
2014-08-15 05:50:36 -04:00
|
|
|
}
|
|
|
|
}
|