package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.3",
  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.21.2",
  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. "swagger-tools": "^0.10.4",
  45. "temp": "^0.8.3",
  46. "throng": "^4.0.0",
  47. "tsscmp": "^1.0.6",
  48. "utf-8-validate": "^5.0.4"
  49. },
  50. "devDependencies": {
  51. "@overleaf/migrations": "*",
  52. "benny": "^3.7.1",
  53. "chai": "^4.3.6",
  54. "chai-as-promised": "^7.1.1",
  55. "chai-exclude": "^2.1.1",
  56. "mocha": "^11.1.0",
  57. "mocha-junit-reporter": "^2.2.1",
  58. "mocha-multi-reporters": "^1.5.1",
  59. "node-fetch": "^2.7.0",
  60. "sinon": "^9.0.2",
  61. "swagger-client": "^3.10.0",
  62. "typescript": "^5.0.4",
  63. "yauzl": "^2.9.1"
  64. },
  65. "scripts": {
  66. "start": "node app.js",
  67. "lint": "eslint --max-warnings 0 --format unix .",
  68. "lint:fix": "eslint --fix .",
  69. "format": "prettier --list-different $PWD/'**/{*.*js,*.ts}'",
  70. "format:fix": "prettier --write $PWD/'**/{*.*js,*.ts}'",
  71. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  72. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  73. "test:unit:_run": "mocha --recursive --exit $@ test/unit/js",
  74. "test:acceptance:_run": "mocha --recursive --timeout 15000 --exit $@ test/acceptance/js",
  75. "nodemon": "node --watch app.js",
  76. "migrate": "knex migrate:latest",
  77. "delete_old_chunks": "node storage/tasks/delete_old_chunks.js",
  78. "fix_duplicate_versions": "node storage/tasks/fix_duplicate_versions.js",
  79. "benchmarks": "node benchmarks/index.js",
  80. "types:check": "tsc --noEmit"
  81. }
  82. }