package.json 1.6 KB

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