package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "real-time-sharelatex",
  3. "version": "0.1.4",
  4. "description": "The socket.io layer of ShareLaTeX for real-time editor interactions",
  5. "author": "ShareLaTeX <team@sharelatex.com>",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/sharelatex/real-time-sharelatex.git"
  9. },
  10. "scripts": {
  11. "start": "node $NODE_APP_OPTIONS app.js",
  12. "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
  13. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  14. "test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
  15. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  16. "nodemon": "nodemon --config nodemon.json",
  17. "lint": "node_modules/.bin/eslint --max-warnings 0 .",
  18. "format": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --list-different",
  19. "format:fix": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --write"
  20. },
  21. "dependencies": {
  22. "@overleaf/o-error": "^3.0.0",
  23. "async": "^0.9.0",
  24. "base64id": "0.1.0",
  25. "basic-auth-connect": "^1.0.0",
  26. "body-parser": "^1.19.0",
  27. "connect-redis": "^2.1.0",
  28. "cookie-parser": "^1.4.5",
  29. "express": "^4.17.1",
  30. "express-session": "^1.17.1",
  31. "logger-sharelatex": "^2.2.0",
  32. "metrics-sharelatex": "^2.6.2",
  33. "redis-sharelatex": "^1.0.13",
  34. "request": "^2.88.2",
  35. "settings-sharelatex": "^1.1.0",
  36. "socket.io": "https://github.com/overleaf/socket.io/archive/0.9.19-overleaf-4.tar.gz",
  37. "socket.io-client": "https://github.com/overleaf/socket.io-client/archive/0.9.17-overleaf-3.tar.gz"
  38. },
  39. "devDependencies": {
  40. "bunyan": "~0.22.3",
  41. "chai": "~1.9.1",
  42. "cookie-signature": "^1.1.0",
  43. "eslint": "^6.8.0",
  44. "eslint-config-prettier": "^6.10.0",
  45. "eslint-config-standard": "^14.1.0",
  46. "eslint-plugin-chai-expect": "^2.1.0",
  47. "eslint-plugin-chai-friendly": "^0.5.0",
  48. "eslint-plugin-import": "^2.20.1",
  49. "eslint-plugin-mocha": "^6.3.0",
  50. "eslint-plugin-node": "^11.0.0",
  51. "eslint-plugin-prettier": "^3.1.2",
  52. "eslint-plugin-promise": "^4.2.1",
  53. "eslint-plugin-standard": "^4.0.1",
  54. "mocha": "^4.0.1",
  55. "prettier": "^2.0.0",
  56. "prettier-eslint-cli": "^5.0.0",
  57. "sandboxed-module": "~0.3.0",
  58. "sinon": "^2.4.1",
  59. "timekeeper": "0.0.4",
  60. "uid-safe": "^2.1.5"
  61. }
  62. }