package.json 2.3 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": "eslint --max-warnings 0 --format unix .",
  20. "format": "prettier --list-different $PWD/'**/*.js'",
  21. "format:fix": "prettier --write $PWD/'**/*.js'",
  22. "lint:fix": "eslint --fix ."
  23. },
  24. "dependencies": {
  25. "@overleaf/metrics": "^3.5.1",
  26. "@overleaf/o-error": "^3.1.0",
  27. "@overleaf/redis-wrapper": "^2.0.0",
  28. "@overleaf/settings": "^2.1.1",
  29. "async": "^0.9.0",
  30. "base64id": "0.1.0",
  31. "basic-auth-connect": "^1.0.0",
  32. "body-parser": "^1.19.0",
  33. "bunyan": "^1.8.15",
  34. "connect-redis": "^2.1.0",
  35. "cookie-parser": "^1.4.5",
  36. "express": "^4.17.1",
  37. "express-session": "^1.17.1",
  38. "logger-sharelatex": "^2.2.0",
  39. "request": "^2.88.2",
  40. "socket.io": "https://github.com/overleaf/socket.io/archive/0.9.19-overleaf-5.tar.gz",
  41. "socket.io-client": "https://github.com/overleaf/socket.io-client/archive/0.9.17-overleaf-3.tar.gz",
  42. "underscore": "1.13.1"
  43. },
  44. "devDependencies": {
  45. "chai": "^4.2.0",
  46. "chai-as-promised": "^7.1.1",
  47. "cookie-signature": "^1.1.0",
  48. "eslint": "^7.21.0",
  49. "eslint-config-prettier": "^8.1.0",
  50. "eslint-config-standard": "^16.0.2",
  51. "eslint-plugin-chai-expect": "^2.2.0",
  52. "eslint-plugin-chai-friendly": "^0.6.0",
  53. "eslint-plugin-import": "^2.22.1",
  54. "eslint-plugin-mocha": "^8.0.0",
  55. "eslint-plugin-node": "^11.1.0",
  56. "eslint-plugin-prettier": "^3.1.2",
  57. "eslint-plugin-promise": "^4.2.1",
  58. "mocha": "^8.3.2",
  59. "prettier": "^2.2.1",
  60. "sandboxed-module": "~0.3.0",
  61. "sinon": "^9.2.4",
  62. "timekeeper": "0.0.4",
  63. "uid-safe": "^2.1.5"
  64. }
  65. }