package.json 3.3 KB

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