package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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/logger": "*",
  11. "@overleaf/metrics": "*",
  12. "@overleaf/mongo-utils": "*",
  13. "@overleaf/o-error": "*",
  14. "@overleaf/object-persistor": "*",
  15. "@overleaf/promise-utils": "*",
  16. "@overleaf/redis-wrapper": "*",
  17. "@overleaf/settings": "*",
  18. "@overleaf/stream-utils": "^0.1.0",
  19. "archiver": "^5.3.0",
  20. "basic-auth": "^2.0.1",
  21. "bluebird": "^3.7.2",
  22. "body-parser": "^1.20.3",
  23. "bull": "^4.16.5",
  24. "bunyan": "^1.8.12",
  25. "check-types": "^11.1.2",
  26. "command-line-args": "^3.0.3",
  27. "config": "^1.19.0",
  28. "express": "^4.21.2",
  29. "fs-extra": "^9.0.1",
  30. "generic-pool": "^2.1.1",
  31. "helmet": "^3.22.0",
  32. "http-status": "^1.4.2",
  33. "jsonwebtoken": "^9.0.0",
  34. "knex": "^2.4.0",
  35. "lodash": "^4.17.19",
  36. "mongodb": "6.12.0",
  37. "overleaf-editor-core": "*",
  38. "p-limit": "^6.2.0",
  39. "pg": "^8.7.1",
  40. "pg-query-stream": "^4.2.4",
  41. "swagger-tools": "^0.10.4",
  42. "temp": "^0.8.3",
  43. "throng": "^4.0.0",
  44. "tsscmp": "^1.0.6",
  45. "utf-8-validate": "^5.0.4"
  46. },
  47. "devDependencies": {
  48. "benny": "^3.7.1",
  49. "chai": "^4.3.6",
  50. "chai-as-promised": "^7.1.1",
  51. "chai-exclude": "^2.1.1",
  52. "mocha": "^11.1.0",
  53. "node-fetch": "^2.7.0",
  54. "sinon": "^9.0.2",
  55. "swagger-client": "^3.10.0",
  56. "typescript": "^5.0.4",
  57. "yauzl": "^2.9.1"
  58. },
  59. "scripts": {
  60. "start": "node app.js",
  61. "lint": "eslint --max-warnings 0 --format unix .",
  62. "lint:fix": "eslint --fix .",
  63. "format": "prettier --list-different $PWD/'**/*.*js'",
  64. "format:fix": "prettier --write $PWD/'**/*.*js'",
  65. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  66. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  67. "test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
  68. "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
  69. "nodemon": "node --watch app.js",
  70. "migrate": "knex migrate:latest",
  71. "delete_old_chunks": "node storage/tasks/delete_old_chunks.js",
  72. "fix_duplicate_versions": "node storage/tasks/fix_duplicate_versions.js",
  73. "benchmarks": "node benchmarks/index.js",
  74. "types:check": "tsc --noEmit"
  75. }
  76. }