package.json 2.4 KB

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