package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "name": "velofex-admin-monorepo",
  3. "version": "2.0.0",
  4. "private": true,
  5. "keywords": [
  6. "monorepo",
  7. "turbo",
  8. "velofex"
  9. ],
  10. "type": "module",
  11. "scripts": {
  12. "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 turbo build",
  13. "build:analyze": "turbo build:analyze",
  14. "build:weba": "pnpm run build --filter=@velofex/web-a",
  15. "build:webb": "pnpm run build --filter=@velofex/web-b",
  16. "build:docker": "./scripts/deploy/build-local-docker-image.sh",
  17. "changeset": "pnpm exec changeset",
  18. "check": "pnpm run check:circular && pnpm run check:dep && pnpm run check:type && pnpm check:cspell",
  19. "check:circular": "vsh check-circular",
  20. "check:cspell": "cspell lint **/*.ts **/README.md .changeset/*.md --no-progress",
  21. "check:dep": "vsh check-dep",
  22. "check:type": "turbo run typecheck",
  23. "clean": "node ./scripts/clean.mjs",
  24. "commit": "czg",
  25. "dev": "turbo-run dev",
  26. "dev:weba": "pnpm -F @velofex/web-a run dev",
  27. "dev:webb": "pnpm -F @velofex/web-b run dev",
  28. "format": "vsh lint --format",
  29. "lint": "vsh lint",
  30. "postinstall": "pnpm -r run stub --if-present",
  31. "preinstall": "npx only-allow pnpm",
  32. "prepare": "is-ci || husky",
  33. "preview": "turbo-run preview",
  34. "publint": "vsh publint",
  35. "reinstall": "pnpm clean --del-lock && pnpm install",
  36. "test:unit": "vitest run --dom",
  37. "test:e2e": "turbo run test:e2e",
  38. "update:deps": "npx taze -r -w",
  39. "version": "pnpm exec changeset version && pnpm install --no-frozen-lockfile"
  40. },
  41. "devDependencies": {
  42. "@changesets/changelog-github": "catalog:",
  43. "@changesets/cli": "catalog:",
  44. "@playwright/test": "catalog:",
  45. "@types/node": "catalog:",
  46. "@velofex/commitlint-config": "workspace:*",
  47. "@velofex/eslint-config": "workspace:*",
  48. "@velofex/prettier-config": "workspace:*",
  49. "@velofex/stylelint-config": "workspace:*",
  50. "@velofex/tailwind-config": "workspace:*",
  51. "@velofex/tsconfig": "workspace:*",
  52. "@velofex/turbo-run": "workspace:*",
  53. "@velofex/vite-config": "workspace:*",
  54. "@velofex/vsh": "workspace:*",
  55. "@vitejs/plugin-vue": "catalog:",
  56. "@vitejs/plugin-vue-jsx": "catalog:",
  57. "@vue/test-utils": "catalog:",
  58. "autoprefixer": "catalog:",
  59. "cross-env": "catalog:",
  60. "cspell": "catalog:",
  61. "happy-dom": "catalog:",
  62. "husky": "catalog:",
  63. "is-ci": "catalog:",
  64. "lint-staged": "catalog:",
  65. "playwright": "catalog:",
  66. "rimraf": "catalog:",
  67. "tailwindcss": "catalog:",
  68. "turbo": "catalog:",
  69. "typescript": "catalog:",
  70. "unbuild": "catalog:",
  71. "vite": "catalog:",
  72. "vitest": "catalog:",
  73. "vue": "catalog:",
  74. "vue-tsc": "catalog:"
  75. },
  76. "engines": {
  77. "node": ">=20.10.0",
  78. "pnpm": ">=9.12.0"
  79. },
  80. "packageManager": "pnpm@9.15.1",
  81. "pnpm": {
  82. "peerDependencyRules": {
  83. "allowedVersions": {
  84. "eslint": "*"
  85. }
  86. },
  87. "overrides": {
  88. "@ast-grep/napi": "catalog:",
  89. "@ctrl/tinycolor": "catalog:",
  90. "clsx": "catalog:",
  91. "esbuild": "0.24.0",
  92. "pinia": "catalog:",
  93. "vue": "catalog:"
  94. },
  95. "neverBuiltDependencies": [
  96. "canvas",
  97. "node-gyp"
  98. ]
  99. }
  100. }