package.json 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. {
  2. "name": "zjugis-ui-admin-vue3",
  3. "version": "1.8.2-snapshot",
  4. "description": "基于vue3、vite4、element-plus、typesScript",
  5. "author": "xingyu",
  6. "private": false,
  7. "scripts": {
  8. "i": "pnpm install",
  9. "local": "vite --mode base",
  10. "dev": "vite --mode dev",
  11. "pro": "vite --mode pro",
  12. "front": "vite --mode front",
  13. "ts:check": "vue-tsc --noEmit",
  14. "build:pro": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --mode pro",
  15. "build:dev": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --mode dev",
  16. "build:base": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --mode base",
  17. "build:stage": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --mode stage",
  18. "build:static": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --mode static",
  19. "build:front": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --mode front",
  20. "serve:pro": "vite preview --mode pro",
  21. "serve:dev": "vite preview --mode dev",
  22. "preview": "pnpm build:base && vite preview",
  23. "clean": "npx rimraf node_modules",
  24. "clean:cache": "npx rimraf node_modules/.cache",
  25. "lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
  26. "lint:format": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
  27. "lint:style": "stylelint --fix \"./src/**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
  28. "lint:lint-staged": "lint-staged -c "
  29. },
  30. "dependencies": {
  31. "@element-plus/icons-vue": "^2.1.0",
  32. "@form-create/designer": "^3.1.3",
  33. "@form-create/element-ui": "^3.1.24",
  34. "@iconify/iconify": "^3.1.1",
  35. "@tanstack/vue-query": "^4.32.6",
  36. "@videojs-player/vue": "^1.0.0",
  37. "@vue-office/docx": "^1.3.1",
  38. "@vue-office/excel": "^1.4.7",
  39. "@vue-office/pdf": "^1.5.5",
  40. "@vueuse/core": "^10.4.1",
  41. "@wangeditor/editor": "^5.1.23",
  42. "@wangeditor/editor-for-vue": "^5.1.10",
  43. "@zxcvbn-ts/core": "^3.0.4",
  44. "animate.css": "^4.1.1",
  45. "axios": "^1.5.0",
  46. "benz-amr-recorder": "^1.1.5",
  47. "bpmn-js-token-simulation": "^0.10.0",
  48. "camunda-bpmn-moddle": "^7.0.1",
  49. "cropperjs": "^1.6.1",
  50. "crypto-js": "^4.1.1",
  51. "dayjs": "^1.11.10",
  52. "diagram-js": "^12.3.0",
  53. "echarts": "^5.4.3",
  54. "echarts-wordcloud": "^2.1.0",
  55. "element-plus": "2.3.14",
  56. "fast-xml-parser": "^4.3.0",
  57. "file-saver": "^2.0.5",
  58. "highlight.js": "^11.8.0",
  59. "intro.js": "^7.2.0",
  60. "js-base64": "^3.7.5",
  61. "js-cookie": "^2.2.1",
  62. "jsencrypt": "^3.3.2",
  63. "lodash-es": "^4.17.21",
  64. "min-dash": "^4.1.1",
  65. "mitt": "^3.0.1",
  66. "moment": "^2.29.4",
  67. "nprogress": "^0.2.0",
  68. "pinia": "^2.1.6",
  69. "postcss-pxtorem": "^5.1.1",
  70. "qrcode": "^1.5.3",
  71. "qs": "^6.11.2",
  72. "steady-xml": "^0.1.0",
  73. "tinymce": "^5.10.2",
  74. "url": "^0.11.3",
  75. "video.js": "^7.21.5",
  76. "vue": "^3.3.4",
  77. "vue-dompurify-html": "^4.1.4",
  78. "vue-i18n": "^9.4.1",
  79. "vue-router": "^4.2.5",
  80. "vue-types": "^5.1.1",
  81. "vuedraggable": "^4.1.0",
  82. "web-storage-cache": "^1.1.1",
  83. "xlsx": "^0.18.5",
  84. "xml-js": "^1.6.11"
  85. },
  86. "devDependencies": {
  87. "@commitlint/cli": "^17.7.1",
  88. "@commitlint/config-conventional": "^17.7.0",
  89. "@iconify/json": "^2.2.119",
  90. "@intlify/unplugin-vue-i18n": "^1.2.0",
  91. "@purge-icons/generated": "^0.9.0",
  92. "@types/intro.js": "^5.1.1",
  93. "@types/lodash-es": "^4.17.9",
  94. "@types/node": "^20.6.0",
  95. "@types/nprogress": "^0.2.0",
  96. "@types/qrcode": "^1.5.2",
  97. "@types/qs": "^6.9.8",
  98. "@typescript-eslint/eslint-plugin": "^6.7.2",
  99. "@typescript-eslint/parser": "^6.7.2",
  100. "@unocss/eslint-config": "^0.56.1",
  101. "@unocss/transformer-variant-group": "^0.56.1",
  102. "@vitejs/plugin-legacy": "^4.1.1",
  103. "@vitejs/plugin-vue": "^4.3.4",
  104. "@vitejs/plugin-vue-jsx": "^3.0.2",
  105. "@vue-macros/volar": "^0.14.3",
  106. "autoprefixer": "^10.4.16",
  107. "bpmn-js": "8.9.0",
  108. "bpmn-js-properties-panel": "0.46.0",
  109. "consola": "^3.2.3",
  110. "eslint": "^8.49.0",
  111. "eslint-config-prettier": "^9.0.0",
  112. "eslint-define-config": "^1.23.0",
  113. "eslint-plugin-prettier": "^5.0.0",
  114. "eslint-plugin-vue": "^9.17.0",
  115. "lint-staged": "^14.0.1",
  116. "postcss": "^8.4.30",
  117. "postcss-html": "^1.5.0",
  118. "postcss-scss": "^4.0.8",
  119. "prettier": "^3.0.3",
  120. "rimraf": "^5.0.1",
  121. "rollup": "^3.29.2",
  122. "sass": "^1.68.0",
  123. "stylelint": "^15.10.3",
  124. "stylelint-config-html": "^1.1.0",
  125. "stylelint-config-recommended": "^13.0.0",
  126. "stylelint-config-standard": "^34.0.0",
  127. "stylelint-order": "^6.0.3",
  128. "terser": "^5.20.0",
  129. "typescript": "5.2.2",
  130. "unocss": "^0.56.1",
  131. "unplugin-auto-import": "^0.16.6",
  132. "unplugin-element-plus": "^0.8.0",
  133. "unplugin-vue-components": "^0.25.2",
  134. "vite": "4.4.9",
  135. "vite-plugin-compression": "^0.5.1",
  136. "vite-plugin-ejs": "^1.6.4",
  137. "vite-plugin-eslint": "^1.8.1",
  138. "vite-plugin-progress": "^0.0.7",
  139. "vite-plugin-purge-icons": "^0.9.2",
  140. "vite-plugin-svg-icons": "^2.0.1",
  141. "vite-plugin-top-level-await": "^1.3.1",
  142. "vue-eslint-parser": "^9.3.1",
  143. "vue-tsc": "^1.8.13"
  144. },
  145. "license": "MIT",
  146. "repository": {
  147. "type": "git",
  148. "url": "git+https://gitee.com/yudaocode/yudao-ui-admin-vue3"
  149. },
  150. "bugs": {
  151. "url": "https://gitee.com/yudaocode/yudao-ui-admin-vue3/issues"
  152. },
  153. "homepage": "https://gitee.com/yudaocode/yudao-ui-admin-vue3",
  154. "packageManager": "pnpm@8.6.0",
  155. "engines": {
  156. "node": ">= 16.0.0",
  157. "pnpm": ">=8.6.0"
  158. }
  159. }