overleaf/services/chat/package.json

53 lines
1.8 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 .",
2020-03-06 10:50:14 -05:00
"format": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --list-different",
"format:fix": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --write"
},
2014-08-15 05:50:36 -04:00
"dependencies": {
2020-03-06 11:31:40 -05:00
"async": "3.2.0",
2014-08-15 05:50:36 -04:00
"express": "3.3.1",
"logger-sharelatex": "^1.9.0",
"metrics-sharelatex": "^2.5.0",
2020-03-06 11:47:30 -05:00
"mongojs": "3.1.0",
"request": "^2.88.2",
2019-07-18 05:42:38 -04:00
"settings-sharelatex": "^1.1.0"
2014-08-15 05:50:36 -04:00
},
"devDependencies": {
2020-03-06 11:31:40 -05:00
"acorn": "^7.1.1",
2020-03-06 11:32:59 -05:00
"ajv": "^6.12.0",
"bunyan": "^1.8.12",
"chai": "^4.2.0",
2020-03-06 10:50:14 -05:00
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
2020-03-06 11:39:43 -05:00
"mocha": "^7.1.0",
"nodemon": "^2.0.2",
2020-03-06 10:50:14 -05:00
"prettier-eslint-cli": "^5.0.0",
"sandboxed-module": "^2.0.3",
2020-03-06 11:31:40 -05:00
"sinon": "^9.0.0",
"timekeeper": "^2.2.0"
2014-08-15 05:50:36 -04:00
}
}