package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "history-sharelatex",
  3. "version": "0.1.4",
  4. "description": "An API for saving and compressing individual document updates into a browsable history",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/sharelatex/track-changes-sharelatex.git"
  8. },
  9. "scripts": {
  10. "start": "node $NODE_APP_OPTIONS app.js",
  11. "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
  12. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  13. "test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
  14. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  15. "nodemon": "nodemon --config nodemon.json",
  16. "lint": "eslint --max-warnings 0 --format unix .",
  17. "format": "prettier --list-different $PWD/'**/*.js'",
  18. "format:fix": "prettier --write $PWD/'**/*.js'",
  19. "lint:fix": "eslint --fix ."
  20. },
  21. "dependencies": {
  22. "@overleaf/metrics": "^3.5.1",
  23. "@overleaf/o-error": "^3.1.0",
  24. "@overleaf/redis-wrapper": "^2.0.0",
  25. "@overleaf/settings": "^2.1.1",
  26. "JSONStream": "^1.3.5",
  27. "async": "^2.6.3",
  28. "aws-sdk": "^2.643.0",
  29. "body-parser": "^1.19.0",
  30. "bson": "^1.1.5",
  31. "bunyan": "^1.8.15",
  32. "byline": "^5.0.0",
  33. "express": "4.17.1",
  34. "heap": "^0.2.6",
  35. "line-reader": "^0.4.0",
  36. "logger-sharelatex": "^2.2.0",
  37. "mongo-uri": "^0.1.2",
  38. "mongodb": "^3.6.0",
  39. "redis": "~0.10.1",
  40. "request": "~2.88.2",
  41. "requestretry": "^4.1.0",
  42. "s3-streams": "^0.4.0",
  43. "underscore": "~1.13.1",
  44. "yazl": "^2.5.1"
  45. },
  46. "devDependencies": {
  47. "chai": "^4.2.0",
  48. "chai-as-promised": "^7.1.1",
  49. "cli": "^1.0.1",
  50. "eslint": "^7.21.0",
  51. "eslint-config-prettier": "^8.1.0",
  52. "eslint-config-standard": "^16.0.2",
  53. "eslint-plugin-chai-expect": "^2.2.0",
  54. "eslint-plugin-chai-friendly": "^0.6.0",
  55. "eslint-plugin-import": "^2.22.1",
  56. "eslint-plugin-mocha": "^8.0.0",
  57. "eslint-plugin-node": "^11.1.0",
  58. "eslint-plugin-prettier": "^3.1.2",
  59. "eslint-plugin-promise": "^4.2.1",
  60. "memorystream": "0.3.1",
  61. "mocha": "^8.3.2",
  62. "prettier": "^2.2.1",
  63. "sandboxed-module": "~2.0.3",
  64. "sinon": "~9.0.1",
  65. "timekeeper": "2.2.0"
  66. }
  67. }