2014-11-07 12:38:12 -05:00
|
|
|
{
|
|
|
|
"name": "real-time-sharelatex",
|
2015-03-20 10:21:17 -04:00
|
|
|
"version": "0.1.4",
|
2014-11-07 12:38:12 -05:00
|
|
|
"description": "The socket.io layer of ShareLaTeX for real-time editor interactions",
|
|
|
|
"author": "ShareLaTeX <team@sharelatex.com>",
|
2020-12-03 05:27:38 -05:00
|
|
|
"license": "AGPL-3.0-only",
|
|
|
|
"private": true,
|
2014-11-07 12:38:12 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/sharelatex/real-time-sharelatex.git"
|
|
|
|
},
|
2017-12-29 03:15:32 -05:00
|
|
|
"scripts": {
|
2020-06-23 13:29:17 -04: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",
|
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",
|
2018-10-03 09:21:02 -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: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",
|
2021-12-14 08:00:35 -05:00
|
|
|
"@overleaf/logger": "^3.1.0",
|
|
|
|
"@overleaf/metrics": "^4.0.0",
|
2022-01-27 05:29:10 -05:00
|
|
|
"@overleaf/o-error": "^3.4.0",
|
2020-11-10 06:32:06 -05:00
|
|
|
"@overleaf/redis-wrapper": "^2.0.0",
|
2021-07-12 12:47:18 -04:00
|
|
|
"@overleaf/settings": "^2.1.1",
|
2014-11-13 06:48:49 -05:00
|
|
|
"async": "^0.9.0",
|
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",
|
2014-11-07 12:38:12 -05:00
|
|
|
"connect-redis": "^2.1.0",
|
2020-06-19 10:26:32 -04:00
|
|
|
"cookie-parser": "^1.4.5",
|
|
|
|
"express": "^4.17.1",
|
|
|
|
"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",
|
2021-05-19 09:28:54 -04:00
|
|
|
"socket.io": "https://github.com/overleaf/socket.io/archive/0.9.19-overleaf-5.tar.gz",
|
2020-11-11 11:23:12 -05:00
|
|
|
"socket.io-client": "https://github.com/overleaf/socket.io-client/archive/0.9.17-overleaf-3.tar.gz",
|
2021-05-07 01:18:17 -04:00
|
|
|
"underscore": "1.13.1"
|
2014-11-07 12:38:12 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-07-13 06:55:16 -04:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
2020-06-19 10:26:32 -04:00
|
|
|
"cookie-signature": "^1.1.0",
|
2021-03-18 16:19:31 -04:00
|
|
|
"mocha": "^8.3.2",
|
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
|
|
|
}
|