package.json 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. {
  2. "name": "vben-admin",
  3. "version": "2.11.5",
  4. "homepage": "https://github.com/vbenjs/vue-vben-admin",
  5. "bugs": {
  6. "url": "https://github.com/vbenjs/vue-vben-admin/issues"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/vbenjs/vue-vben-admin.git"
  11. },
  12. "license": "MIT",
  13. "author": {
  14. "name": "vben",
  15. "email": "anncwb@126.com",
  16. "url": "https://github.com/anncwb"
  17. },
  18. "type": "module",
  19. "scripts": {
  20. "bootstrap": "pnpm install",
  21. "build": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build",
  22. "build:analyze": "cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build --mode analyze",
  23. "build:docker": "vite build --mode docker",
  24. "build:no-cache": "pnpm store prune && npm run build",
  25. "build:test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build --mode test",
  26. "commit": "czg",
  27. "dev": "pnpm vite",
  28. "preinstall": "npx only-allow pnpm",
  29. "postinstall": "turbo run stub",
  30. "lint": "turbo run lint",
  31. "lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
  32. "lint:prettier": "prettier --write .",
  33. "lint:stylelint": "stylelint \"**/*.{vue,css,less,scss}\" --fix --cache --cache-location node_modules/.cache/stylelint/",
  34. "log": "conventional-changelog -p angular -i CHANGELOG.md -s",
  35. "prepare": "husky install",
  36. "preview": "npm run build && vite preview",
  37. "reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
  38. "serve": "npm run dev",
  39. "test:gzip": "npx http-server dist --cors --gzip -c-1",
  40. "type:check": "vue-tsc --noEmit --skipLibCheck"
  41. },
  42. "lint-staged": {
  43. "*.{js,jsx,ts,tsx}": [
  44. "prettier --write",
  45. "eslint --fix"
  46. ],
  47. "{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
  48. "prettier --write--parser json"
  49. ],
  50. "package.json": [
  51. "prettier --write"
  52. ],
  53. "*.vue": [
  54. "prettier --write",
  55. "eslint --fix",
  56. "stylelint --fix"
  57. ],
  58. "*.{scss,less,styl,html}": [
  59. "prettier --write",
  60. "stylelint --fix"
  61. ],
  62. "*.md": [
  63. "prettier --write"
  64. ]
  65. },
  66. "config": {
  67. "commitizen": {
  68. "path": "node_modules/cz-git"
  69. }
  70. },
  71. "dependencies": {
  72. "@ant-design/icons-vue": "^7.0.1",
  73. "@iconify/iconify": "^3.1.1",
  74. "@logicflow/core": "^1.2.26",
  75. "@logicflow/extension": "^1.2.26",
  76. "@vben/hooks": "workspace:*",
  77. "@vue/shared": "^3.4.25",
  78. "@vueuse/core": "^10.9.0",
  79. "@zxcvbn-ts/core": "^3.0.4",
  80. "ant-design-vue": "^4.2.1",
  81. "axios": "^1.6.8",
  82. "codemirror": "^5.65.16",
  83. "cropperjs": "^1.6.2",
  84. "crypto-js": "^4.2.0",
  85. "dayjs": "^1.11.10",
  86. "echarts": "^5.5.0",
  87. "exceljs": "^4.4.0",
  88. "html2canvas": "^1.4.1",
  89. "lodash-es": "^4.17.21",
  90. "mockjs": "^1.1.0",
  91. "nprogress": "^0.2.0",
  92. "path-to-regexp": "^6.2.2",
  93. "pinia": "2.1.7",
  94. "pinia-plugin-persistedstate": "^3.2.1",
  95. "print-js": "^1.6.0",
  96. "qrcode": "^1.5.3",
  97. "qs": "^6.12.1",
  98. "resize-observer-polyfill": "^1.5.1",
  99. "showdown": "^2.1.0",
  100. "sortablejs": "^1.15.2",
  101. "tinymce": "^5.10.9",
  102. "unocss": "^0.59.4",
  103. "vditor": "^3.10.4",
  104. "vue": "^3.4.25",
  105. "vue-i18n": "^9.13.1",
  106. "vue-json-pretty": "^2.4.0",
  107. "vue-router": "^4.3.2",
  108. "vue-types": "^5.1.1",
  109. "vuedraggable": "^4.1.0",
  110. "vxe-pc-ui": "^4.0.44",
  111. "vxe-table": "^4.7.40",
  112. "vxe-table-plugin-export-xlsx": "^4.0.4",
  113. "xe-utils": "^3.5.28",
  114. "xlsx": "^0.18.5"
  115. },
  116. "devDependencies": {
  117. "@commitlint/cli": "^19.3.0",
  118. "@commitlint/config-conventional": "^19.2.2",
  119. "@iconify/json": "^2.2.203",
  120. "@purge-icons/generated": "^0.10.0",
  121. "@types/codemirror": "^5.60.15",
  122. "@types/crypto-js": "^4.2.2",
  123. "@types/lodash-es": "^4.17.12",
  124. "@types/mockjs": "^1.0.10",
  125. "@types/nprogress": "^0.2.3",
  126. "@types/qrcode": "^1.5.5",
  127. "@types/qs": "^6.9.15",
  128. "@types/showdown": "^2.0.6",
  129. "@types/sortablejs": "^1.15.8",
  130. "@vben/eslint-config": "workspace:*",
  131. "@vben/stylelint-config": "workspace:*",
  132. "@vben/ts-config": "workspace:*",
  133. "@vben/types": "workspace:*",
  134. "@vben/vite-config": "workspace:*",
  135. "@vue/compiler-sfc": "^3.4.25",
  136. "@vue/test-utils": "^2.4.5",
  137. "conventional-changelog-cli": "^4.1.0",
  138. "cross-env": "^7.0.3",
  139. "cz-git": "^1.9.1",
  140. "czg": "^1.9.1",
  141. "husky": "^9.0.11",
  142. "lint-staged": "15.2.2",
  143. "prettier": "^3.2.5",
  144. "prettier-plugin-packagejson": "^2.5.0",
  145. "rimraf": "^5.0.5",
  146. "turbo": "^1.13.2",
  147. "typescript": "^5.4.5",
  148. "unbuild": "^2.0.0",
  149. "vite": "^5.2.10",
  150. "vite-plugin-mock": "^2.9.6",
  151. "vite-plugin-vue-devtools": "^7.2.0",
  152. "vue-tsc": "^2.0.14"
  153. },
  154. "packageManager": "pnpm@9.0.4",
  155. "engines": {
  156. "node": ">=18.12.0",
  157. "pnpm": ">=9.0.2"
  158. }
  159. }