package.json 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "overleaf",
  3. "private": true,
  4. "dependencies": {
  5. "patch-package": "^8.0.0"
  6. },
  7. "devDependencies": {
  8. "@prettier/plugin-pug": "^3.4.0",
  9. "@types/chai": "^4.3.0",
  10. "@types/chai-as-promised": "^7.1.8",
  11. "@types/mocha": "^10.0.6",
  12. "@types/multer": "^2.1.0",
  13. "@typescript-eslint/eslint-plugin": "8.50.0",
  14. "@typescript-eslint/parser": "^8.50.0",
  15. "@vitest/eslint-plugin": "^1.5.0",
  16. "eslint": "^8.15.0",
  17. "eslint-config-prettier": "^8.5.0",
  18. "eslint-config-standard": "^17.0.0",
  19. "eslint-plugin-chai-expect": "^3.0.0",
  20. "eslint-plugin-chai-friendly": "^0.7.2",
  21. "eslint-plugin-cypress": "^2.15.1",
  22. "eslint-plugin-import": "^2.26.0",
  23. "eslint-plugin-mocha": "^10.1.0",
  24. "eslint-plugin-n": "^15.7.0",
  25. "eslint-plugin-prettier": "^4.0.0",
  26. "eslint-plugin-promise": "^6.0.0",
  27. "eslint-plugin-unicorn": "^56.0.0",
  28. "prettier": "3.7.4",
  29. "prettier-plugin-groovy": "0.2.1",
  30. "typescript": "^5.9.3"
  31. },
  32. "engines": {
  33. "npm": "11.11.0"
  34. },
  35. "overrides": {
  36. "request@2.88.2": {
  37. "tough-cookie": "5.1.2",
  38. "form-data": "2.5.5",
  39. "qs": "6.14.1"
  40. },
  41. "cypress@13.13.2": {
  42. "@cypress/request@3.0.9": {
  43. "qs": "6.14.1"
  44. }
  45. },
  46. "@opentelemetry/api": "1.9.0",
  47. "mocha@^11.1.0": {
  48. "serialize-javascript": "7.0.5"
  49. }
  50. },
  51. "scripts": {
  52. "format": "prettier --cache --cache-location ./node_modules/.cache/prettier/.prettier-cache --check",
  53. "format:fix": "prettier --cache --cache-location ./node_modules/.cache/prettier/.prettier-cache --write --check",
  54. "format:styles": "prettier --cache --cache-location ./node_modules/.cache/prettier/.prettier-cache --check '**/*.{css,scss}'",
  55. "format:styles:fix": "prettier --cache --cache-location ./node_modules/.cache/prettier/.prettier-cache --write --check '**/*.{css,scss}'",
  56. "format:pug": "prettier --cache --cache-location ./node_modules/.cache/prettier/.prettier-cache --check '**/*.pug'",
  57. "format:pug:fix": "prettier --cache --cache-location ./node_modules/.cache/prettier/.prettier-cache --write --check '**/*.pug'",
  58. "format:jenkins": "prettier --cache --cache-location ./node_modules/.cache/prettier/.prettier-cache --check '**/Jenkinsfile'",
  59. "format:jenkins:fix": "prettier --cache --cache-location ./node_modules/.cache/prettier/.prettier-cache --write --check '**/Jenkinsfile'",
  60. "format:monorepo-check": "prettier --cache --cache-location ./node_modules/.cache/prettier/.prettier-cache --check '**/Jenkinsfile' '**/*.md' '**/docker-compose.yml' '**/docker-compose.*.yml'",
  61. "format:monorepo-check:fix": "prettier --cache --cache-location ./node_modules/.cache/prettier/.prettier-cache --write --check '**/Jenkinsfile' '**/*.md' '**/docker-compose.yml' '**/docker-compose.*.yml'",
  62. "lint": "eslint --cache --cache-location ./node_modules/.cache/eslint/ --max-warnings 0 --format unix .",
  63. "lint:fix": "eslint --cache --cache-location ./node_modules/.cache/eslint/ --fix .",
  64. "postinstall": "patch-package"
  65. },
  66. "workspaces": [
  67. "jobs/mirror-documentation",
  68. "libraries/*",
  69. "server-ce/test",
  70. "services/analytics",
  71. "services/chat",
  72. "services/clsi",
  73. "services/clsi-cache",
  74. "services/clsi-perf",
  75. "services/contacts",
  76. "services/docstore",
  77. "services/document-updater",
  78. "services/filestore",
  79. "services/freegeoip",
  80. "services/github-sync",
  81. "services/history-v1",
  82. "services/idp",
  83. "services/latexqc",
  84. "services/notifications",
  85. "services/project-history",
  86. "services/real-time",
  87. "services/templates",
  88. "services/third-party-datastore",
  89. "services/third-party-references",
  90. "services/tpdsworker",
  91. "services/web",
  92. "tools/dependency-management",
  93. "tools/npm-overrides-helper",
  94. "tools/saas-e2e",
  95. "tools/migrations"
  96. ]
  97. }