package.json 1.5 KB

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