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. "archiver": "^5.3.0",
  21. "basic-auth": "^2.0.1",
  22. "bluebird": "^3.7.2",
  23. "body-parser": "^1.20.3",
  24. "bull": "^4.16.5",
  25. "bunyan": "^1.8.12",
  26. "check-types": "^11.1.2",
  27. "command-line-args": "^3.0.3",
  28. "config": "^3.3.12",
  29. "express": "^4.21.2",
  30. "fs-extra": "^9.0.1",
  31. "generic-pool": "^2.1.1",
  32. "helmet": "^3.22.0",
  33. "http-status": "^1.4.2",
  34. "jsonwebtoken": "^9.0.0",
  35. "knex": "^2.4.0",
  36. "lodash": "^4.17.19",
  37. "mongodb": "6.12.0",
  38. "overleaf-editor-core": "*",
  39. "p-limit": "^6.2.0",
  40. "p-queue": "^8.1.0",
  41. "pg": "^8.7.1",
  42. "pg-query-stream": "^4.2.4",
  43. "swagger-tools": "^0.10.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. "benny": "^3.7.1",
  51. "chai": "^4.3.6",
  52. "chai-as-promised": "^7.1.1",
  53. "chai-exclude": "^2.1.1",
  54. "mocha": "^11.1.0",
  55. "node-fetch": "^2.7.0",
  56. "sinon": "^9.0.2",
  57. "swagger-client": "^3.10.0",
  58. "typescript": "^5.0.4",
  59. "yauzl": "^2.9.1"
  60. },
  61. "scripts": {
  62. "start": "node app.js",
  63. "lint": "eslint --max-warnings 0 --format unix .",
  64. "lint:fix": "eslint --fix .",
  65. "format": "prettier --list-different $PWD/'**/{*.*js,Jenkinsfile}'",
  66. "format:fix": "prettier --write $PWD/'**/{*.*js,Jenkinsfile}'",
  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 --reporter spec --exit $@ test/unit/js",
  70. "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ 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. }