package.json 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. {
  2. "name": "vue3-antdv-admin",
  3. "version": "2.0.0",
  4. "packageManager": "pnpm@9.4.0",
  5. "type": "module",
  6. "engines": {
  7. "node": ">=18",
  8. "pnpm": ">=8.0.2"
  9. },
  10. "author": {
  11. "name": "buqiyuan",
  12. "email": "1743369777@qq.com",
  13. "url": "https://github.com/buqiyuan"
  14. },
  15. "scripts": {
  16. "preinstall": "npx only-allow pnpm",
  17. "postinstall": "pnpm nx:build",
  18. "bootstrap": "pnpm install",
  19. "serve": "npm run dev",
  20. "dev": "vite dev",
  21. "build:test": "rimraf dist && cross-env NODE_ENV=test vite build",
  22. "build": "rimraf dist && cross-env NODE_ENV=production vite build",
  23. "build:watch": "rimraf dist && cross-env NODE_ENV=production vite build --watch",
  24. "build:pkg": "pnpm -r --paralle --filter=\"./packages/*\" run build",
  25. "nx:build": "nx run-many -t build --exclude @admin-pkg/components",
  26. "nx:build:watch": "nx watch --all -- nx run \\$NX_PROJECT_NAME:build",
  27. "preview": "npm run build --watch && vite preview",
  28. "preview:dist": "vite preview",
  29. "openapi": "npx tsx openapi.config.ts",
  30. "clean:cache": "npx rimraf node_modules/.cache/ && npx rimraf node_modules/.vite",
  31. "clean:lib": "npx rimraf node_modules packages/*/node_modules",
  32. "lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint",
  33. "lint:eslint": "eslint --cache --max-warnings 0 \"{src,mocks}/**/*.{vue,ts,tsx}\" --fix",
  34. "lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
  35. "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
  36. "lint:lint-staged": "lint-staged",
  37. "prepare": "husky",
  38. "release": "git push && git push origin --tags",
  39. "gen:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
  40. "reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && pnpm clean:lib && npm run bootstrap",
  41. "test:gzip": "npx http-server dist --cors --gzip -c-1",
  42. "test:br": "npx http-server dist --cors --brotli -c-1"
  43. },
  44. "dependencies": {
  45. "@ant-design/icons-vue": "~7.0.1",
  46. "@iconify/vue": "^4.2.0",
  47. "@tinymce/tinymce-vue": "^6.1.0",
  48. "@vueup/vue-quill": "^1.2.0",
  49. "@vueuse/core": "~12.2.0",
  50. "ali-oss": "^6.22.0",
  51. "ant-design-vue": "~4.2.6",
  52. "axios": "~1.7.9",
  53. "crypto-js": "^4.2.0",
  54. "dayjs": "~1.11.13",
  55. "echarts": "^5.5.1",
  56. "file-saver": "~2.0.5",
  57. "lodash-es": "~4.17.21",
  58. "mitt": "~3.0.1",
  59. "nprogress": "~1.0.0-1",
  60. "pinia": "~2.2.4",
  61. "pinia-plugin-persistedstate": "^4.1.1",
  62. "qiniu-js": "^3.4.2",
  63. "qs": "~6.13.0",
  64. "quill": "^2.0.3",
  65. "sortablejs": "~1.15.6",
  66. "tinymce": "^7.6.0",
  67. "uuid": "^8.3.2",
  68. "vue": "~3.5.13",
  69. "vue-echarts": "^7.0.3",
  70. "vue-i18n": "~10.0.4",
  71. "vue-router": "~4.4.5",
  72. "vue-types": "~5.1.3",
  73. "vue-virtual-scroller": "2.0.0-beta.8",
  74. "xlsx": "~0.18.5"
  75. },
  76. "devDependencies": {
  77. "@admin-pkg/components": "workspace:*",
  78. "@admin-pkg/vite-plugin-http2-proxy": "workspace:*",
  79. "@admin-pkg/vite-plugin-msw": "workspace:*",
  80. "@admin-pkg/vite-plugin-tinymce-resource": "workspace:*",
  81. "@commitlint/cli": "~19.5.0",
  82. "@commitlint/config-conventional": "~19.5.0",
  83. "@faker-js/faker": "^9.0.3",
  84. "@iconify-json/ant-design": "^1.2.5",
  85. "@iconify-json/ep": "^1.2.2",
  86. "@iconify/json": "^2.2.288",
  87. "@types/crypto-js": "^4.2.2",
  88. "@types/lodash-es": "~4.17.12",
  89. "@types/node": "~22.7.4",
  90. "@types/qs": "^6.9.16",
  91. "@types/sortablejs": "^1.15.8",
  92. "@typescript-eslint/eslint-plugin": "~8.18.2",
  93. "@typescript-eslint/parser": "~8.18.2",
  94. "@umijs/openapi": "^1.13.0",
  95. "@vitejs/plugin-vue": "~5.2.1",
  96. "@vitejs/plugin-vue-jsx": "~4.1.1",
  97. "@vue/tsconfig": "^0.7.0",
  98. "commitizen": "~4.3.1",
  99. "conventional-changelog-cli": "~4.1.0",
  100. "core-js": "^3.39.0",
  101. "cross-env": "~7.0.3",
  102. "eslint": "~9.17.0",
  103. "eslint-config-prettier": "~9.1.0",
  104. "eslint-define-config": "~2.1.0",
  105. "eslint-plugin-import": "~2.31.0",
  106. "eslint-plugin-prettier": "~5.2.1",
  107. "eslint-plugin-unused-imports": "^4.1.4",
  108. "eslint-plugin-vue": "~9.32.0",
  109. "husky": "~9.1.7",
  110. "less": "~4.2.1",
  111. "lint-staged": "~15.2.11",
  112. "msw": "^2.4.9",
  113. "nx": "^20.3.0",
  114. "postcss": "~8.4.49",
  115. "postcss-html": "~1.7.0",
  116. "postcss-less": "~6.0.0",
  117. "prettier": "~3.4.2",
  118. "rimraf": "~5.0.9",
  119. "stylelint": "~16.12.0",
  120. "stylelint-config-property-sort-order-smacss": "^10.0.0",
  121. "stylelint-config-recommended": "~14.0.1",
  122. "stylelint-config-recommended-vue": "~1.5.0",
  123. "stylelint-config-standard": "~36.0.1",
  124. "stylelint-order": "~6.0.4",
  125. "stylelint-prettier": "^5.0.2",
  126. "typescript": "~5.7.2",
  127. "unocss": "^0.65.3",
  128. "unplugin-vue-components": "~0.28.0",
  129. "vite": "~6.0.6",
  130. "vite-plugin-checker": "~0.8.0",
  131. "vite-plugin-inspect": "^0.10.6",
  132. "vite-plugin-mkcert": "^1.17.6",
  133. "vite-plugin-svg-icons": "~2.0.1",
  134. "vite-plugin-vue-inspector": "^5.3.1",
  135. "vue-eslint-parser": "~9.4.3",
  136. "vue-tsc": "~2.2.0"
  137. },
  138. "__npminstall_done": false,
  139. "repository": {
  140. "type": "git",
  141. "url": "https://github.com/buqiyuan/vue3-antdv-admin"
  142. },
  143. "homepage": "https://buqiyuan.gitee.io/vue3-antdv-admin",
  144. "keywords": [
  145. "vue",
  146. "ant-design-vue",
  147. "vue3",
  148. "ts",
  149. "tsx",
  150. "admin",
  151. "typescript"
  152. ],
  153. "license": "MIT",
  154. "target": "web",
  155. "pnpm": {
  156. "overrides": {},
  157. "peerDependencyRules": {
  158. "allowedVersions": {}
  159. }
  160. }
  161. }