package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "overleaf",
  3. "private": true,
  4. "dependencies": {
  5. "patch-package": "^8.0.0"
  6. },
  7. "devDependencies": {
  8. "@types/mocha": "^10.0.6",
  9. "@typescript-eslint/eslint-plugin": "^8.0.0",
  10. "@typescript-eslint/parser": "^8.0.0",
  11. "eslint": "^8.15.0",
  12. "eslint-config-prettier": "^8.5.0",
  13. "eslint-config-standard": "^17.0.0",
  14. "eslint-plugin-chai-expect": "^3.0.0",
  15. "eslint-plugin-chai-friendly": "^0.7.2",
  16. "eslint-plugin-cypress": "^2.15.1",
  17. "eslint-plugin-import": "^2.26.0",
  18. "eslint-plugin-mocha": "^10.1.0",
  19. "eslint-plugin-node": "^11.1.0",
  20. "eslint-plugin-prettier": "^4.0.0",
  21. "eslint-plugin-promise": "^6.0.0",
  22. "prettier": "3.3.3",
  23. "typescript": "^5.5.4"
  24. },
  25. "scripts": {
  26. "format": "prettier --list-different $PWD/'**/*.js'",
  27. "format:fix": "prettier --write $PWD/'**/*.js'",
  28. "lint": "eslint --max-warnings 0 --format unix .",
  29. "lint:fix": "eslint --fix .",
  30. "postinstall": "patch-package"
  31. },
  32. "workspaces": [
  33. "jobs/mirror-documentation",
  34. "libraries/*",
  35. "services/analytics",
  36. "services/chat",
  37. "services/clsi",
  38. "services/clsi-perf",
  39. "services/contacts",
  40. "services/docstore",
  41. "services/document-updater",
  42. "services/filestore",
  43. "services/freegeoip",
  44. "services/github-sync",
  45. "services/history-v1",
  46. "services/idp",
  47. "services/latexqc",
  48. "services/notifications",
  49. "services/project-history",
  50. "services/real-time",
  51. "services/references",
  52. "services/spelling",
  53. "services/templates",
  54. "services/third-party-datastore",
  55. "services/third-party-references",
  56. "services/tpdsworker",
  57. "services/web"
  58. ]
  59. }