package.json 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. {
  2. "name": "vue3-jeecg-admin",
  3. "version": "0.0.1",
  4. "author": {
  5. "name": "jeecg",
  6. "email": "jeecgos@163.com",
  7. "url": "https://gitee.com/jeecg/vue3-jeecg-admin"
  8. },
  9. "scripts": {
  10. "bootstrap": "yarn install",
  11. "serve": "npm run dev",
  12. "dev": "vite",
  13. "build": "cross-env NODE_ENV=production vite build && esno ./build/script/postBuild.ts",
  14. "build:test": "cross-env vite build --mode test && esno ./build/script/postBuild.ts",
  15. "build:no-cache": "yarn clean:cache && npm run build",
  16. "report": "cross-env REPORT=true npm run build",
  17. "type:check": "vue-tsc --noEmit --skipLibCheck",
  18. "preview": "npm run build && vite preview",
  19. "preview:dist": "vite preview",
  20. "log": "conventional-changelog -p angular -i CHANGELOG.md -s",
  21. "clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
  22. "clean:lib": "rimraf node_modules",
  23. "lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
  24. "lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
  25. "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
  26. "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
  27. "lint:pretty": "pretty-quick --staged",
  28. "test:unit": "jest",
  29. "test:unit-coverage": "jest --coverage",
  30. "test:gzip": "http-server dist --cors --gzip -c-1",
  31. "test:br": "http-server dist --cors --brotli -c-1",
  32. "reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
  33. "prepare": "husky install",
  34. "gen:icon": "esno ./build/generate/icon/index.ts"
  35. },
  36. "dependencies": {
  37. "@iconify/iconify": "^2.0.4",
  38. "@logicflow/core": "^0.6.15",
  39. "@logicflow/extension": "^0.6.15",
  40. "@fullcalendar/core": "^5.8.0",
  41. "@fullcalendar/daygrid": "^5.8.0",
  42. "@fullcalendar/interaction": "^5.8.0",
  43. "@fullcalendar/timegrid": "^5.8.0",
  44. "@fullcalendar/vue3": "^5.8.0",
  45. "@vueuse/core": "^6.0.0",
  46. "@zxcvbn-ts/core": "^1.0.0-beta.0",
  47. "ant-design-vue": "^2.2.6",
  48. "axios": "^0.21.1",
  49. "china-area-data": "^5.0.1",
  50. "clipboard": "^2.0.8",
  51. "codemirror": "^5.62.3",
  52. "cron-parser": "^3.5.0",
  53. "cropperjs": "^1.5.12",
  54. "crypto-js": "^4.1.1",
  55. "dayjs": "^1.10.6",
  56. "dom-align": "^1.12.2",
  57. "echarts": "^5.1.2",
  58. "enquire.js": "^2.1.6",
  59. "intro.js": "^4.1.0",
  60. "js-cookie": "^2.2.1",
  61. "lodash-es": "^4.17.21",
  62. "lodash.get": "^4.4.2",
  63. "lodash.pick": "^4.4.0",
  64. "md5": "^2.3.0",
  65. "mockjs": "^1.1.0",
  66. "nprogress": "^0.2.0",
  67. "path-to-regexp": "^6.2.0",
  68. "pinia": "2.0.0-rc.6",
  69. "print-js": "^1.6.0",
  70. "qrcode": "^1.4.4",
  71. "qrcodejs2": "0.0.2",
  72. "resize-observer-polyfill": "^1.5.1",
  73. "sortablejs": "^1.14.0",
  74. "tinymce": "^5.8.2",
  75. "vditor": "^3.8.6",
  76. "vue": "3.2.4",
  77. "vue-cropper": "^0.5.6",
  78. "vue-cropperjs": "^5.0.0",
  79. "vue-i18n": "9.1.7",
  80. "vue-infinite-scroll": "^2.0.2",
  81. "vue-router": "^4.0.11",
  82. "vue-types": "^4.0.3",
  83. "vxe-table": "^4.0.24",
  84. "vxe-table-plugin-antd": "^3.0.3",
  85. "xe-utils": "^3.3.1",
  86. "xlsx": "^0.17.1",
  87. "vue-json-pretty": "1.8.1"
  88. },
  89. "devDependencies": {
  90. "@commitlint/cli": "^13.1.0",
  91. "@commitlint/config-conventional": "^13.1.0",
  92. "@iconify/json": "^1.1.392",
  93. "@purge-icons/generated": "^0.7.0",
  94. "@types/codemirror": "^5.60.2",
  95. "@types/crypto-js": "^4.0.2",
  96. "@types/fs-extra": "^9.0.12",
  97. "@types/inquirer": "^7.3.3",
  98. "@types/intro.js": "^3.0.2",
  99. "@types/jest": "^27.0.1",
  100. "@types/lodash-es": "^4.17.4",
  101. "@types/mockjs": "^1.0.4",
  102. "@types/node": "^16.7.1",
  103. "@types/nprogress": "^0.2.0",
  104. "@types/qrcode": "^1.4.1",
  105. "@types/qs": "^6.9.7",
  106. "@types/sortablejs": "^1.10.7",
  107. "@typescript-eslint/eslint-plugin": "^4.29.3",
  108. "@typescript-eslint/parser": "^4.29.3",
  109. "@vitejs/plugin-legacy": "^1.5.1",
  110. "@vitejs/plugin-vue": "^1.4.0",
  111. "@vitejs/plugin-vue-jsx": "^1.1.7",
  112. "@vue/compiler-sfc": "3.2.4",
  113. "@vue/test-utils": "^2.0.0-rc.12",
  114. "autoprefixer": "^10.3.2",
  115. "commitizen": "^4.2.4",
  116. "conventional-changelog-cli": "^2.1.1",
  117. "cross-env": "^7.0.3",
  118. "dotenv": "^10.0.0",
  119. "eslint": "^7.32.0",
  120. "eslint-config-prettier": "^8.3.0",
  121. "eslint-define-config": "^1.0.9",
  122. "eslint-plugin-jest": "^24.4.0",
  123. "eslint-plugin-prettier": "^3.4.1",
  124. "eslint-plugin-vue": "^7.16.0",
  125. "esno": "^0.9.1",
  126. "fs-extra": "^10.0.0",
  127. "http-server": "^13.0.1",
  128. "husky": "^7.0.1",
  129. "inquirer": "^8.1.2",
  130. "is-ci": "^3.0.0",
  131. "jest": "^27.0.6",
  132. "less": "^4.1.1",
  133. "lint-staged": "^11.1.2",
  134. "npm-run-all": "^4.1.5",
  135. "postcss": "^8.3.6",
  136. "prettier": "^2.3.2",
  137. "pretty-quick": "^3.1.1",
  138. "rimraf": "^3.0.2",
  139. "rollup-plugin-visualizer": "5.5.2",
  140. "stylelint": "^13.13.1",
  141. "stylelint-config-prettier": "^8.0.2",
  142. "stylelint-config-standard": "^22.0.0",
  143. "stylelint-order": "^4.1.0",
  144. "ts-jest": "^27.0.5",
  145. "ts-node": "^10.2.1",
  146. "typescript": "4.3.5",
  147. "vite": "2.5.0",
  148. "vite-plugin-compression": "^0.3.5",
  149. "vite-plugin-html": "^2.1.0",
  150. "vite-plugin-imagemin": "^0.4.5",
  151. "vite-plugin-mock": "^2.9.6",
  152. "vite-plugin-purge-icons": "^0.7.0",
  153. "vite-plugin-pwa": "^0.11.0",
  154. "vite-plugin-style-import": "^1.2.1",
  155. "vite-plugin-svg-icons": "^1.0.4",
  156. "vite-plugin-windicss": "^1.2.8",
  157. "vite-plugin-theme": "^0.8.1",
  158. "vue-eslint-parser": "^7.10.0",
  159. "vue-tsc": "^0.3.0"
  160. },
  161. "resolutions": {
  162. "//": "Used to install imagemin dependencies, because imagemin may not be installed in China. If it is abroad, you can delete it",
  163. "bin-wrapper": "npm:bin-wrapper-china",
  164. "rollup": "^2.56.3"
  165. },
  166. "repository": {
  167. "type": "git",
  168. "url": "git+https://github.com/jeecg/vue3-jeect-admin.git"
  169. },
  170. "license": "MIT",
  171. "bugs": {
  172. "url": "https://github.com/jeecg/vue3-jeecg-admin/issues"
  173. },
  174. "homepage": "https://github.com/jeecg/vue3-jeecg-admin",
  175. "engines": {
  176. "node": "^12 || >=14"
  177. }
  178. }