2014-08-15 09:50:36 +00:00
|
|
|
{
|
2022-02-07 11:46:51 +00:00
|
|
|
"name": "@overleaf/chat",
|
|
|
|
"description": "The backend API that powers Overleaf chat",
|
|
|
|
"private": true,
|
|
|
|
"main": "app.js",
|
2017-12-29 08:05:03 +00:00
|
|
|
"scripts": {
|
2019-01-04 11:05:35 +00: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 14:21:22 +00:00
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
2019-01-04 11:05:35 +00: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 11:46:51 +00: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 08:05:03 +00:00
|
|
|
},
|
2014-08-15 09:50:36 +00:00
|
|
|
"dependencies": {
|
2021-12-14 13:00:35 +00:00
|
|
|
"@overleaf/logger": "^3.1.0",
|
|
|
|
"@overleaf/metrics": "^4.0.0",
|
2022-02-07 11:46:51 +00:00
|
|
|
"@overleaf/settings": "^3.0.0",
|
2021-09-08 08:21:57 +00:00
|
|
|
"async": "^3.2.0",
|
2020-03-06 18:33:17 +00:00
|
|
|
"body-parser": "^1.19.0",
|
|
|
|
"express": "4.17.1",
|
2021-09-08 08:21:57 +00:00
|
|
|
"mongodb": "^3.6.0"
|
2014-08-15 09:50:36 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-03-06 16:31:40 +00:00
|
|
|
"acorn": "^7.1.1",
|
2020-03-06 16:32:59 +00:00
|
|
|
"ajv": "^6.12.0",
|
2022-02-07 11:46:51 +00:00
|
|
|
"chai": "^4.3.6",
|
2021-07-13 10:55:19 +00:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2022-02-07 11:46:51 +00:00
|
|
|
"mocha": "^8.4.0",
|
2020-03-06 16:00:47 +00:00
|
|
|
"nodemon": "^2.0.2",
|
2021-09-08 08:21:57 +00:00
|
|
|
"request": "^2.88.2",
|
2022-02-07 11:46:51 +00:00
|
|
|
"sandboxed-module": "^2.0.4",
|
|
|
|
"sinon": "^9.2.4",
|
2020-02-12 13:49:00 +00:00
|
|
|
"timekeeper": "^2.2.0"
|
2014-08-15 09:50:36 +00:00
|
|
|
}
|
|
|
|
}
|