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>",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/sharelatex/real-time-sharelatex.git"
|
|
|
|
},
|
2017-12-29 03:15:32 -05:00
|
|
|
"scripts": {
|
2019-01-03 11:21:33 -05:00
|
|
|
"compile:app": "([ -e app/coffee ] && coffee -m $COFFEE_OPTIONS -o app/js -c app/coffee || echo 'No CoffeeScript folder to compile') && ( [ -e app.coffee ] && coffee -m $COFFEE_OPTIONS -c app.coffee || echo 'No CoffeeScript app to compile')",
|
2018-05-23 10:00:46 -04:00
|
|
|
"start": "npm run compile:app && node $NODE_APP_OPTIONS app.js",
|
2018-10-03 09:21:02 -04:00
|
|
|
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 30000 --exit $@ test/acceptance/js",
|
2018-05-23 10:00:46 -04:00
|
|
|
"test:acceptance": "npm run compile:app && npm run compile:acceptance_tests && npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
2018-10-03 09:21:02 -04:00
|
|
|
"test:unit:_run": "mocha --recursive --reporter spec --exit $@ test/unit/js",
|
2018-05-23 10:00:46 -04:00
|
|
|
"test:unit": "npm run compile:app && npm run compile:unit_tests && npm run test:unit:_run -- --grep=$MOCHA_GREP",
|
|
|
|
"compile:unit_tests": "[ ! -e test/unit/coffee ] && echo 'No unit tests to compile' || coffee -o test/unit/js -c test/unit/coffee",
|
|
|
|
"compile:acceptance_tests": "[ ! -e test/acceptance/coffee ] && echo 'No acceptance tests to compile' || coffee -o test/acceptance/js -c test/acceptance/coffee",
|
2018-10-03 09:21:02 -04:00
|
|
|
"compile:all": "npm run compile:app && npm run compile:unit_tests && npm run compile:acceptance_tests && npm run compile:smoke_tests",
|
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
|
|
|
"compile:smoke_tests": "[ ! -e test/smoke/coffee ] && echo 'No smoke tests to compile' || coffee -o test/smoke/js -c test/smoke/coffee"
|
2017-12-29 03:15:32 -05:00
|
|
|
},
|
2014-11-07 12:38:12 -05:00
|
|
|
"dependencies": {
|
2014-11-13 06:48:49 -05:00
|
|
|
"async": "^0.9.0",
|
2020-06-04 10:52:13 -04:00
|
|
|
"base64id": "0.1.0",
|
2015-03-03 12:15:19 -05:00
|
|
|
"basic-auth-connect": "^1.0.0",
|
2020-06-19 10:26:32 -04:00
|
|
|
"body-parser": "^1.19.0",
|
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",
|
2019-06-21 06:26:28 -04:00
|
|
|
"logger-sharelatex": "^1.7.0",
|
2020-03-30 04:47:01 -04:00
|
|
|
"metrics-sharelatex": "^2.6.2",
|
2020-06-22 07:13:44 -04:00
|
|
|
"redis-sharelatex": "^1.0.12",
|
2020-06-19 10:26:32 -04:00
|
|
|
"request": "^2.88.2",
|
2019-02-01 12:25:45 -05:00
|
|
|
"settings-sharelatex": "^1.1.0",
|
2020-02-04 05:32:54 -05:00
|
|
|
"socket.io": "0.9.19",
|
2014-11-07 12:38:12 -05:00
|
|
|
"socket.io-client": "^0.9.16"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"bunyan": "~0.22.3",
|
|
|
|
"chai": "~1.9.1",
|
2020-06-19 10:26:32 -04:00
|
|
|
"cookie-signature": "^1.1.0",
|
2014-11-07 12:38:12 -05:00
|
|
|
"sandboxed-module": "~0.3.0",
|
2020-04-30 12:46:21 -04:00
|
|
|
"sinon": "^2.4.1",
|
2018-05-23 10:00:46 -04:00
|
|
|
"mocha": "^4.0.1",
|
2020-06-19 10:26:32 -04:00
|
|
|
"uid-safe": "^2.1.5",
|
2014-11-10 06:27:08 -05:00
|
|
|
"timekeeper": "0.0.4"
|
2014-11-07 12:38:12 -05:00
|
|
|
}
|
2019-10-14 06:10:20 -04:00
|
|
|
}
|