overleaf/services/chat/package.json

55 lines
1.9 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: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-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",
"lint": "node_modules/.bin/eslint ."
},
2014-08-15 05:50:36 -04:00
"dependencies": {
"async": "0.2.9",
"express": "3.3.1",
2019-01-04 08:24:15 -05:00
"logger-sharelatex": "git+https://github.com/sharelatex/logger-sharelatex.git#v1.5.9",
2019-01-04 06:37:48 -05:00
"metrics-sharelatex": "git+https://github.com/sharelatex/metrics-sharelatex.git#v2.0.12",
"mongojs": "2.4.0",
2014-08-15 05:50:36 -04:00
"redis": "~0.10.1",
"request": "^2.79.0",
2019-01-04 10:47:56 -05:00
"settings-sharelatex": "git+https://github.com/sharelatex/settings-sharelatex.git#v1.1.0",
2017-01-18 08:34:28 -05:00
"v8-profiler": "^5.6.5"
2014-08-15 05:50:36 -04:00
},
"devDependencies": {
"ajv": "^5.5.2",
2014-08-15 06:35:22 -04:00
"bunyan": "^1.0.0",
2014-08-15 05:50:36 -04:00
"chai": "",
"eslint": "^5.11.1",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.2",
"eslint-plugin-standard": "^4.0.0",
"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
}
}