mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ef0d9c5afc
Also fix acceptance tests, broken by a change in behaviour of the redis client. It now returns a promise from most operations. This interferes with how mocha handles callbacks in `before` blocks.
58 lines
1.9 KiB
JSON
58 lines
1.9 KiB
JSON
{
|
|
"name": "chat-sharelatex",
|
|
"version": "0.1.4",
|
|
"description": "The backend API that powers ShareLaTeX chat",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/sharelatex/chat-sharelatex.git"
|
|
},
|
|
"scripts": {
|
|
"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",
|
|
"nodemon": "nodemon --config nodemon.json",
|
|
"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 .",
|
|
"format": "node_modules/.bin/prettier-eslint '**/*.js' --list-different",
|
|
"format:fix": "node_modules/.bin/prettier-eslint '**/*.js' --write"
|
|
},
|
|
"dependencies": {
|
|
"async": "0.2.9",
|
|
"express": "3.3.1",
|
|
"logger-sharelatex": "^1.7.0",
|
|
"metrics-sharelatex": "^2.2.0",
|
|
"mongojs": "2.4.0",
|
|
"redis": "~0.10.1",
|
|
"request": "^2.79.0",
|
|
"settings-sharelatex": "^1.1.0",
|
|
"v8-profiler": "^5.6.5"
|
|
},
|
|
"devDependencies": {
|
|
"acorn": "^6.1.1",
|
|
"ajv": "^5.5.2",
|
|
"bunyan": "^1.0.0",
|
|
"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",
|
|
"prettier-eslint-cli": "^4.7.1",
|
|
"sandboxed-module": "",
|
|
"sinon": "",
|
|
"timekeeper": ""
|
|
}
|
|
}
|