package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "chat-sharelatex",
  3. "version": "0.1.4",
  4. "description": "The backend API that powers ShareLaTeX chat",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/sharelatex/chat-sharelatex.git"
  8. },
  9. "scripts": {
  10. "start": "node $NODE_APP_OPTIONS app.js",
  11. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  12. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  13. "nodemon": "nodemon --config nodemon.json",
  14. "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
  15. "test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
  16. "lint": "node_modules/.bin/eslint ."
  17. },
  18. "dependencies": {
  19. "async": "0.2.9",
  20. "express": "3.3.1",
  21. "logger-sharelatex": "^1.6.0",
  22. "metrics-sharelatex": "^2.1.1",
  23. "mongojs": "2.4.0",
  24. "redis": "~0.10.1",
  25. "request": "^2.79.0",
  26. "settings-sharelatex": "^1.1.0",
  27. "v8-profiler": "^5.6.5"
  28. },
  29. "devDependencies": {
  30. "ajv": "^5.5.2",
  31. "bunyan": "^1.0.0",
  32. "chai": "",
  33. "eslint": "^5.11.1",
  34. "eslint-config-prettier": "^3.3.0",
  35. "eslint-config-standard": "^12.0.0",
  36. "eslint-config-standard-jsx": "^6.0.2",
  37. "eslint-config-standard-react": "^7.0.2",
  38. "eslint-plugin-chai-expect": "^2.0.1",
  39. "eslint-plugin-chai-friendly": "^0.4.1",
  40. "eslint-plugin-import": "^2.14.0",
  41. "eslint-plugin-jsx-a11y": "^6.1.2",
  42. "eslint-plugin-mocha": "^5.2.0",
  43. "eslint-plugin-node": "^8.0.0",
  44. "eslint-plugin-prettier": "^3.0.1",
  45. "eslint-plugin-promise": "^4.0.1",
  46. "eslint-plugin-react": "^7.12.2",
  47. "eslint-plugin-standard": "^4.0.0",
  48. "mocha": "^4.1.0",
  49. "nodemon": "^1.14.11",
  50. "prettier-eslint-cli": "^4.7.1",
  51. "sandboxed-module": "",
  52. "sinon": "",
  53. "timekeeper": ""
  54. }
  55. }