package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "overleaf-editor",
  3. "version": "1.0.0",
  4. "description": "Overleaf Editor.",
  5. "author": "",
  6. "license": "Proprietary",
  7. "private": true,
  8. "dependencies": {
  9. "@google-cloud/secret-manager": "^5.6.0",
  10. "@overleaf/fetch-utils": "*",
  11. "@overleaf/logger": "*",
  12. "@overleaf/metrics": "*",
  13. "@overleaf/mongo-utils": "*",
  14. "@overleaf/o-error": "*",
  15. "@overleaf/object-persistor": "*",
  16. "@overleaf/promise-utils": "*",
  17. "@overleaf/redis-wrapper": "*",
  18. "@overleaf/settings": "*",
  19. "@overleaf/stream-utils": "^0.1.0",
  20. "@overleaf/validation-tools": "*",
  21. "archiver": "^5.3.0",
  22. "basic-auth": "^2.0.1",
  23. "bluebird": "^3.7.2",
  24. "body-parser": "1.20.4",
  25. "bull": "^4.16.5",
  26. "bunyan": "^1.8.12",
  27. "check-types": "^11.1.2",
  28. "command-line-args": "^3.0.3",
  29. "config": "^3.3.12",
  30. "express": "4.22.1",
  31. "fs-extra": "^9.0.1",
  32. "generic-pool": "^2.1.1",
  33. "helmet": "^3.22.0",
  34. "http-status": "^1.4.2",
  35. "jsonwebtoken": "^9.0.3",
  36. "knex": "^2.4.0",
  37. "lodash": "^4.17.19",
  38. "mongodb": "6.12.0",
  39. "overleaf-editor-core": "*",
  40. "p-limit": "^6.2.0",
  41. "p-queue": "^8.1.0",
  42. "pg": "^8.7.1",
  43. "pg-query-stream": "^4.2.4",
  44. "temp": "^0.8.3",
  45. "throng": "^4.0.0",
  46. "tsscmp": "^1.0.6",
  47. "utf-8-validate": "^5.0.4"
  48. },
  49. "devDependencies": {
  50. "@overleaf/migrations": "*",
  51. "benny": "^3.7.1",
  52. "chai": "^4.3.6",
  53. "chai-as-promised": "^7.1.1",
  54. "chai-exclude": "^2.1.1",
  55. "mocha": "^11.1.0",
  56. "mocha-junit-reporter": "^2.2.1",
  57. "mocha-multi-reporters": "^1.5.1",
  58. "node-fetch": "^2.7.0",
  59. "sinon": "^9.0.2",
  60. "typescript": "^5.0.4",
  61. "yauzl": "^2.9.1"
  62. },
  63. "scripts": {
  64. "start": "node app.js",
  65. "lint": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --max-warnings 0 --format unix .",
  66. "lint:fix": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --fix .",
  67. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  68. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  69. "test:unit:_run": "mocha --recursive --exit $@ test/unit/js",
  70. "test:acceptance:_run": "mocha --recursive --timeout 15000 --exit --retries=$RETRIES $@ test/acceptance/js",
  71. "nodemon": "node --watch app.js",
  72. "migrate": "knex migrate:latest",
  73. "delete_old_chunks": "node storage/tasks/delete_old_chunks.js",
  74. "fix_duplicate_versions": "node storage/tasks/fix_duplicate_versions.js",
  75. "benchmarks": "node benchmarks/index.js",
  76. "types:check": "tsc --noEmit"
  77. }
  78. }