overleaf/services/chat/package.json

57 lines
2.5 KiB
JSON
Raw Normal View History

2014-08-15 05:50:36 -04:00
{
"name": "chat-sharelatex",
2015-03-20 11:25:43 -04:00
"version": "0.1.4",
2014-08-19 08:52:49 -04:00
"description": "The backend API that powers ShareLaTeX chat",
"repository": {
"type": "git",
"url": "https://github.com/sharelatex/chat-sharelatex.git"
},
"scripts": {
2019-01-04 06:03:03 -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')",
2019-01-04 06:05:35 -05:00
"start": "node $NODE_APP_OPTIONS app.js",
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
2018-05-22 12:25:17 -04:00
"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 06:34:48 -04:00
"compile:all": "npm run compile:app && npm run compile:unit_tests && npm run compile:acceptance_tests && npm run compile:smoke_tests",
2018-01-29 09:21:22 -05:00
"nodemon": "nodemon --config nodemon.json",
2019-01-04 06:05:35 -05:00
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
"compile:smoke_tests": "[ ! -e test/smoke/coffee ] && echo 'No smoke tests to compile' || coffee -o test/smoke/js -c test/smoke/coffee",
"lint": "node_modules/.bin/eslint ."
},
2014-08-15 05:50:36 -04:00
"dependencies": {
"async": "0.2.9",
"coffee-script": "~1.7.1",
2014-08-15 05:50:36 -04:00
"express": "3.3.1",
2015-06-08 08:18:35 -04:00
"logger-sharelatex": "git+https://github.com/sharelatex/logger-sharelatex.git#master",
2017-03-24 05:48:45 -04:00
"metrics-sharelatex": "git+https://github.com/sharelatex/metrics-sharelatex.git#v1.7.1",
"mongojs": "2.4.0",
2014-08-15 05:50:36 -04:00
"redis": "~0.10.1",
"request": "^2.79.0",
2017-01-18 08:34:28 -05:00
"settings-sharelatex": "git+https://github.com/sharelatex/settings-sharelatex.git#v1.0.0",
"v8-profiler": "^5.6.5"
2014-08-15 05:50:36 -04:00
},
"devDependencies": {
2014-08-15 06:35:22 -04:00
"bunyan": "^1.0.0",
2014-08-15 05:50:36 -04:00
"chai": "",
"grunt": "~0.4.1",
2014-08-15 06:35:22 -04:00
"grunt-bunyan": "^0.5.0",
"grunt-concurrent": "~0.4.2",
"grunt-contrib-clean": "~0.5.0",
2014-08-15 05:50:36 -04:00
"grunt-contrib-coffee": "~0.7.0",
2014-08-15 06:35:22 -04:00
"grunt-contrib-watch": "~0.5.3",
"grunt-execute": "^0.2.2",
2016-12-14 12:44:02 -05:00
"grunt-forever": "^0.4.7",
"grunt-mocha-test": "~0.8.0",
2014-08-15 05:50:36 -04:00
"grunt-nodemon": "~0.1.2",
2014-08-15 06:35:22 -04:00
"grunt-notify": "~0.2.16",
2014-08-15 05:50:36 -04:00
"grunt-plato": "~0.2.1",
"mocha": "^4.1.0",
"nodemon": "^1.14.11",
2014-08-15 06:35:22 -04:00
"sandboxed-module": "",
"sinon": "",
"timekeeper": ""
2014-08-15 05:50:36 -04:00
}
}