package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. "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. "resolve-url-loader": "^5.0.0",
  22. "sass": "^1.69.5",
  23. "sass-loader": "^13.3.2",
  24. "typescript": "^5.0.4"
  25. },
  26. "scripts": {
  27. "format": "prettier --list-different $PWD/'**/*.js'",
  28. "format:fix": "prettier --write $PWD/'**/*.js'",
  29. "lint": "eslint --max-warnings 0 --format unix .",
  30. "lint:fix": "eslint --fix .",
  31. "postinstall": "patch-package"
  32. },
  33. "workspaces": [
  34. "jobs/mirror-documentation",
  35. "libraries/*",
  36. "services/analytics",
  37. "services/chat",
  38. "services/clsi",
  39. "services/clsi-perf",
  40. "services/contacts",
  41. "services/docstore",
  42. "services/document-updater",
  43. "services/filestore",
  44. "services/freegeoip",
  45. "services/github-sync",
  46. "services/history-v1",
  47. "services/idp",
  48. "services/latexqc",
  49. "services/notifications",
  50. "services/project-history",
  51. "services/real-time",
  52. "services/references",
  53. "services/spelling",
  54. "services/templates",
  55. "services/third-party-datastore",
  56. "services/third-party-references",
  57. "services/tpdsworker",
  58. "services/web"
  59. ]
  60. }