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",
|
2015-03-03 12:15:19 -05:00
|
|
|
"basic-auth-connect": "^1.0.0",
|
|
|
|
"body-parser": "^1.12.0",
|
2014-11-07 12:38:12 -05:00
|
|
|
"connect-redis": "^2.1.0",
|
2014-11-17 10:01:37 -05:00
|
|
|
"cookie-parser": "^1.3.3",
|
2014-11-07 12:38:12 -05:00
|
|
|
"express": "^4.10.1",
|
|
|
|
"express-session": "^1.9.1",
|
2019-02-01 12:25:45 -05:00
|
|
|
"logger-sharelatex": "^1.6.0",
|
|
|
|
"metrics-sharelatex": "^2.1.1",
|
2019-04-11 10:49:19 -04:00
|
|
|
"redis-sharelatex": "git+https://github.com/sharelatex/redis-sharelatex.git#v1.0.6",
|
2019-04-15 10:26:04 -04:00
|
|
|
"request": "^2.88.0",
|
2014-11-07 12:38:12 -05:00
|
|
|
"session.socket.io": "^0.1.6",
|
2019-02-01 12:25:45 -05:00
|
|
|
"settings-sharelatex": "^1.1.0",
|
2014-11-07 12:38:12 -05:00
|
|
|
"socket.io": "0.9.16",
|
|
|
|
"socket.io-client": "^0.9.16"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"bunyan": "~0.22.3",
|
|
|
|
"chai": "~1.9.1",
|
|
|
|
"cookie-signature": "^1.0.5",
|
|
|
|
"sandboxed-module": "~0.3.0",
|
|
|
|
"sinon": "~1.5.2",
|
2018-05-23 10:00:46 -04:00
|
|
|
"mocha": "^4.0.1",
|
2014-11-10 06:27:08 -05:00
|
|
|
"uid-safe": "^1.0.1",
|
|
|
|
"timekeeper": "0.0.4"
|
2014-11-07 12:38:12 -05:00
|
|
|
}
|
|
|
|
}
|