package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "name": "vben-admin-monorepo",
  3. "version": "5.5.3",
  4. "private": true,
  5. "keywords": [
  6. "monorepo",
  7. "turbo",
  8. "vben",
  9. "vben admin",
  10. "vben pro",
  11. "vue",
  12. "vue admin",
  13. "vue vben admin",
  14. "vue vben admin pro",
  15. "vue3"
  16. ],
  17. "homepage": "https://github.com/vbenjs/vue-vben-admin",
  18. "bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
  19. "repository": "vbenjs/vue-vben-admin.git",
  20. "license": "MIT",
  21. "author": {
  22. "name": "vben",
  23. "email": "ann.vben@gmail.com",
  24. "url": "https://github.com/anncwb"
  25. },
  26. "type": "module",
  27. "scripts": {
  28. "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 turbo build",
  29. "build:analyze": "turbo build:analyze",
  30. "build:docker": "./scripts/deploy/build-local-docker-image.sh",
  31. "build:ele": "pnpm run build --filter=@vben/web-ele",
  32. "changeset": "pnpm exec changeset",
  33. "check": "pnpm run check:circular && pnpm run check:dep && pnpm run check:type && pnpm check:cspell",
  34. "check:circular": "vsh check-circular",
  35. "check:cspell": "cspell lint **/*.ts **/README.md .changeset/*.md --no-progress",
  36. "check:dep": "vsh check-dep",
  37. "check:type": "turbo run typecheck",
  38. "clean": "node ./scripts/clean.mjs",
  39. "commit": "czg",
  40. "dev": "turbo-run dev",
  41. "dev:ele": "pnpm -F @vben/web-ele run dev",
  42. "format": "vsh lint --format",
  43. "lint": "vsh lint",
  44. "postinstall": "pnpm -r run stub --if-present",
  45. "preinstall": "npx only-allow pnpm",
  46. "prepare": "is-ci || husky",
  47. "preview": "turbo-run preview",
  48. "publint": "vsh publint",
  49. "reinstall": "pnpm clean --del-lock && pnpm install",
  50. "test:unit": "vitest run --dom",
  51. "test:e2e": "turbo run test:e2e",
  52. "update:deps": "npx taze -r -w",
  53. "version": "pnpm exec changeset version && pnpm install --no-frozen-lockfile"
  54. },
  55. "dependencies": {
  56. "@element-plus/icons-vue": "^2.3.1",
  57. "element-plus": "^2.9.3"
  58. },
  59. "devDependencies": {
  60. "@changesets/changelog-github": "catalog:",
  61. "@changesets/cli": "catalog:",
  62. "@playwright/test": "catalog:",
  63. "@types/node": "catalog:",
  64. "@vben/commitlint-config": "workspace:*",
  65. "@vben/eslint-config": "workspace:*",
  66. "@vben/prettier-config": "workspace:*",
  67. "@vben/stylelint-config": "workspace:*",
  68. "@vben/tailwind-config": "workspace:*",
  69. "@vben/tsconfig": "workspace:*",
  70. "@vben/turbo-run": "workspace:*",
  71. "@vben/vite-config": "workspace:*",
  72. "@vben/vsh": "workspace:*",
  73. "@vitejs/plugin-vue": "catalog:",
  74. "@vitejs/plugin-vue-jsx": "catalog:",
  75. "@vue/test-utils": "catalog:",
  76. "autoprefixer": "catalog:",
  77. "cross-env": "catalog:",
  78. "cspell": "catalog:",
  79. "happy-dom": "catalog:",
  80. "husky": "catalog:",
  81. "is-ci": "catalog:",
  82. "lint-staged": "catalog:",
  83. "playwright": "catalog:",
  84. "rimraf": "catalog:",
  85. "tailwindcss": "catalog:",
  86. "turbo": "catalog:",
  87. "typescript": "catalog:",
  88. "unbuild": "catalog:",
  89. "unplugin-auto-import": "^19.0.0",
  90. "vite": "catalog:",
  91. "vitest": "catalog:",
  92. "vue": "catalog:",
  93. "vue-tsc": "catalog:"
  94. },
  95. "engines": {
  96. "node": ">=20.10.0",
  97. "pnpm": ">=9.12.0"
  98. },
  99. "packageManager": "pnpm@9.15.5",
  100. "pnpm": {
  101. "peerDependencyRules": {
  102. "allowedVersions": {
  103. "eslint": "*"
  104. }
  105. },
  106. "overrides": {
  107. "@ast-grep/napi": "catalog:",
  108. "@cspell/url": "8.17.2",
  109. "@ctrl/tinycolor": "catalog:",
  110. "clsx": "catalog:",
  111. "cspell": "8.17.2",
  112. "esbuild": "0.24.0",
  113. "pinia": "catalog:",
  114. "vue": "catalog:"
  115. },
  116. "neverBuiltDependencies": [
  117. "canvas",
  118. "node-gyp"
  119. ]
  120. }
  121. }