package.json 1.4 KB

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