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",
|
2022-12-13 12:37:49 +00:00
|
|
|
"type": "module",
|
2017-12-29 08:05:03 +00:00
|
|
|
"scripts": {
|
2023-12-07 10:05:50 +00:00
|
|
|
"start": "node app.js",
|
2019-01-04 11:05:35 +00:00
|
|
|
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
|
|
|
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
|
2023-12-07 10:05:50 +00:00
|
|
|
"nodemon": "node --watch app.js",
|
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'",
|
2024-01-11 13:25:25 +00:00
|
|
|
"lint:fix": "eslint --fix .",
|
2024-01-16 19:24:03 +00:00
|
|
|
"types:check": "tsc --noEmit"
|
2017-12-29 08:05:03 +00:00
|
|
|
},
|
2014-08-15 09:50:36 +00:00
|
|
|
"dependencies": {
|
2022-10-27 15:35:43 +00:00
|
|
|
"@overleaf/logger": "*",
|
|
|
|
"@overleaf/metrics": "*",
|
|
|
|
"@overleaf/settings": "*",
|
2024-05-31 09:51:51 +00:00
|
|
|
"async": "^3.2.5",
|
2020-03-06 18:33:17 +00:00
|
|
|
"body-parser": "^1.19.0",
|
2023-01-04 15:07:58 +00:00
|
|
|
"exegesis-express": "^4.0.0",
|
2024-04-22 12:12:16 +00:00
|
|
|
"express": "^4.19.2",
|
2023-10-17 12:48:51 +00:00
|
|
|
"mongodb": "^6.1.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",
|
2023-01-16 15:55:29 +00:00
|
|
|
"mocha": "^10.2.0",
|
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",
|
2024-01-11 13:25:25 +00:00
|
|
|
"timekeeper": "^2.2.0",
|
|
|
|
"typescript": "^5.0.4"
|
2023-01-04 15:07:58 +00:00
|
|
|
},
|
|
|
|
"version": "1.0.0",
|
|
|
|
"directories": {
|
|
|
|
"test": "test"
|
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
|
|
|
"license": "AGPL-3.0"
|
2014-08-15 09:50:36 +00:00
|
|
|
}
|