2014-11-07 12:38:12 -05:00
|
|
|
{
|
2022-02-07 06:46:51 -05:00
|
|
|
"name": "@overleaf/real-time",
|
|
|
|
"description": "The socket.io layer of Overleaf for real-time editor interactions",
|
2020-12-03 05:27:38 -05:00
|
|
|
"private": true,
|
2022-02-07 06:46:51 -05:00
|
|
|
"main": "app.js",
|
2017-12-29 03:15:32 -05:00
|
|
|
"scripts": {
|
2023-12-07 05:05:50 -05:00
|
|
|
"start": "node app.js",
|
2020-06-23 13:29:17 -04:00
|
|
|
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
|
|
|
|
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
2020-10-19 10:20:57 -04:00
|
|
|
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
|
2020-06-23 13:29:17 -04:00
|
|
|
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
|
2023-12-07 05:05:50 -05:00
|
|
|
"nodemon": "node --watch app.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:15:32 -05:00
|
|
|
},
|
2014-11-07 12:38:12 -05:00
|
|
|
"dependencies": {
|
2021-09-01 05:10:10 -04:00
|
|
|
"@hapi/joi": "^17.1.1",
|
2022-10-27 11:35:43 -04:00
|
|
|
"@overleaf/logger": "*",
|
|
|
|
"@overleaf/metrics": "*",
|
|
|
|
"@overleaf/o-error": "*",
|
|
|
|
"@overleaf/redis-wrapper": "*",
|
|
|
|
"@overleaf/settings": "*",
|
2022-06-21 04:07:14 -04:00
|
|
|
"async": "^3.2.2",
|
2020-06-04 10:52:13 -04:00
|
|
|
"base64id": "0.1.0",
|
2020-06-19 10:26:32 -04:00
|
|
|
"body-parser": "^1.19.0",
|
2021-07-12 11:58:05 -04:00
|
|
|
"bunyan": "^1.8.15",
|
2023-01-23 07:57:50 -05:00
|
|
|
"connect-redis": "^6.1.3",
|
2020-06-19 10:26:32 -04:00
|
|
|
"cookie-parser": "^1.4.5",
|
2023-01-24 09:21:39 -05:00
|
|
|
"express": "^4.18.2",
|
2020-06-19 10:26:32 -04:00
|
|
|
"express-session": "^1.17.1",
|
2021-09-14 04:36:24 -04:00
|
|
|
"proxy-addr": "^2.0.7",
|
2020-06-19 10:26:32 -04:00
|
|
|
"request": "^2.88.2",
|
2023-05-09 06:28:13 -04:00
|
|
|
"socket.io": "github:overleaf/socket.io#0.9.19-overleaf-10",
|
2024-01-08 08:55:30 -05:00
|
|
|
"socket.io-client": "github:overleaf/socket.io-client#0.9.17-overleaf-5"
|
2014-11-07 12:38:12 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-07 06:46:51 -05:00
|
|
|
"chai": "^4.3.6",
|
2021-07-13 06:55:16 -04:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2020-06-19 10:26:32 -04:00
|
|
|
"cookie-signature": "^1.1.0",
|
2023-01-16 10:55:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
2014-11-07 12:38:12 -05:00
|
|
|
"sandboxed-module": "~0.3.0",
|
2021-03-18 16:19:31 -04:00
|
|
|
"sinon": "^9.2.4",
|
2020-06-23 13:29:17 -04:00
|
|
|
"timekeeper": "0.0.4",
|
|
|
|
"uid-safe": "^2.1.5"
|
2014-11-07 12:38:12 -05:00
|
|
|
}
|
2019-10-14 06:10:20 -04:00
|
|
|
}
|