package.json 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. {
  2. "name": "vben-admin",
  3. "version": "2.7.2",
  4. "author": {
  5. "name": "vben",
  6. "email": "anncwb@126.com",
  7. "url": "https://github.com/anncwb"
  8. },
  9. "main": "dist/main/build.js",
  10. "build": {
  11. "appId": "xxx@gmail.com",
  12. "electronDownload": {
  13. "mirror": "https://npm.taobao.org/mirrors/electron/"
  14. },
  15. "files": [
  16. "!node_modules",
  17. "dist/**"
  18. ],
  19. "asar": false,
  20. "mac": {
  21. "artifactName": "${productName}_setup_${version}.${ext}",
  22. "target": [
  23. "dmg"
  24. ]
  25. },
  26. "linux": {
  27. "icon": "build/icons/512x512.png",
  28. "target": [
  29. "deb"
  30. ]
  31. },
  32. "win": {
  33. "target": [
  34. {
  35. "target": "nsis",
  36. "arch": [
  37. "x64"
  38. ]
  39. }
  40. ],
  41. "artifactName": "${productName}_setup_${version}.${ext}"
  42. },
  43. "nsis": {
  44. "oneClick": false,
  45. "perMachine": false,
  46. "allowToChangeInstallationDirectory": true,
  47. "deleteAppDataOnUninstall": false
  48. }
  49. },
  50. "scripts": {
  51. "bootstrap": "yarn install",
  52. "dev": "vite",
  53. "serve": "npm run dev",
  54. "build": "cross-env NODE_ENV=production vite build && esno ./build/script/postBuild.ts",
  55. "build:test": "cross-env vite build --mode test && esno ./build/script/postBuild.ts",
  56. "build:no-cache": "yarn clean:cache && npm run build",
  57. "dev:app": "esno ./build/script/startElectron.ts --env=development --watch",
  58. "build:app": "npm run build && esno ./build/script/startElectron.ts --env=production && electron-builder ",
  59. "report": "cross-env REPORT=true npm run build",
  60. "type:check": "vue-tsc --noEmit --skipLibCheck",
  61. "preview": "npm run build && vite preview",
  62. "preview:dist": "vite preview",
  63. "log": "conventional-changelog -p angular -i CHANGELOG.md -s",
  64. "clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
  65. "clean:lib": "rimraf node_modules",
  66. "lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
  67. "lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
  68. "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
  69. "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
  70. "lint:pretty": "pretty-quick --staged",
  71. "test:unit": "jest",
  72. "test:unit-coverage": "jest --coverage",
  73. "test:gzip": "http-server dist --cors --gzip -c-1",
  74. "test:br": "http-server dist --cors --brotli -c-1",
  75. "reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
  76. "prepare": "husky install",
  77. "gen:icon": "esno ./build/generate/icon/index.ts"
  78. },
  79. "dependencies": {
  80. "@iconify/iconify": "^2.0.4",
  81. "@logicflow/core": "^0.6.16",
  82. "@logicflow/extension": "^0.6.16",
  83. "@vueuse/core": "^6.3.3",
  84. "@zxcvbn-ts/core": "^1.0.0-beta.0",
  85. "ant-design-vue": "2.2.7",
  86. "axios": "^0.21.4",
  87. "codemirror": "^5.62.3",
  88. "cropperjs": "^1.5.12",
  89. "electron-is-dev": "^1.2.0",
  90. "crypto-js": "^4.1.1",
  91. "echarts": "^5.2.0",
  92. "intro.js": "^4.2.2",
  93. "lodash-es": "^4.17.21",
  94. "mockjs": "^1.1.0",
  95. "nprogress": "^0.2.0",
  96. "path-to-regexp": "^6.2.0",
  97. "pinia": "2.0.0-rc.9",
  98. "print-js": "^1.6.0",
  99. "qrcode": "^1.4.4",
  100. "resize-observer-polyfill": "^1.5.1",
  101. "showdown": "^1.9.1",
  102. "sortablejs": "^1.14.0",
  103. "tinymce": "^5.9.2",
  104. "vditor": "^3.8.6",
  105. "vue": "3.2.11",
  106. "vue-i18n": "9.1.7",
  107. "vue-json-pretty": "^2.0.4",
  108. "vue-router": "^4.0.11",
  109. "vue-types": "^4.1.0",
  110. "xlsx": "^0.17.1"
  111. },
  112. "devDependencies": {
  113. "@commitlint/cli": "^13.1.0",
  114. "@commitlint/config-conventional": "^13.1.0",
  115. "@iconify/json": "^1.1.401",
  116. "@purge-icons/generated": "^0.7.0",
  117. "@rollup/plugin-alias": "^3.1.1",
  118. "@rollup/plugin-commonjs": "^15.0.0",
  119. "@rollup/plugin-json": "^4.1.0",
  120. "@rollup/plugin-node-resolve": "^9.0.0",
  121. "@types/codemirror": "^5.60.2",
  122. "@types/crypto-js": "^4.0.2",
  123. "@types/fs-extra": "^9.0.12",
  124. "@types/inquirer": "^8.1.1",
  125. "@types/intro.js": "^3.0.2",
  126. "@types/jest": "^27.0.1",
  127. "@types/lodash-es": "^4.17.5",
  128. "@types/mockjs": "^1.0.4",
  129. "@types/node": "^16.9.1",
  130. "@types/nprogress": "^0.2.0",
  131. "@types/qrcode": "^1.4.1",
  132. "@types/qs": "^6.9.7",
  133. "@types/showdown": "^1.9.4",
  134. "@types/sortablejs": "^1.10.7",
  135. "@typescript-eslint/eslint-plugin": "^4.31.0",
  136. "@typescript-eslint/parser": "^4.31.0",
  137. "@vitejs/plugin-legacy": "^1.5.3",
  138. "@vitejs/plugin-vue": "^1.6.2",
  139. "@vitejs/plugin-vue-jsx": "^1.1.8",
  140. "@vue/compiler-sfc": "3.2.11",
  141. "@vue/test-utils": "^2.0.0-rc.14",
  142. "autoprefixer": "^10.3.4",
  143. "commitizen": "^4.2.4",
  144. "conventional-changelog-cli": "^2.1.1",
  145. "cross-env": "^7.0.3",
  146. "dotenv": "^10.0.0",
  147. "electron": "^11.0.0",
  148. "electron-builder": "^22.8.0",
  149. "electron-connect": "^0.6.3",
  150. "electron-contextmenu-middleware": "^1.0.3",
  151. "electron-input-menu": "^2.1.0",
  152. "eslint": "^7.32.0",
  153. "eslint-config-prettier": "^8.3.0",
  154. "eslint-define-config": "^1.0.9",
  155. "eslint-plugin-jest": "^24.4.0",
  156. "eslint-plugin-prettier": "^4.0.0",
  157. "eslint-plugin-vue": "^7.17.0",
  158. "esno": "^0.9.1",
  159. "fs-extra": "^10.0.0",
  160. "http-server": "^13.0.1",
  161. "husky": "^7.0.2",
  162. "inquirer": "^8.1.2",
  163. "is-ci": "^3.0.0",
  164. "jest": "^27.2.0",
  165. "less": "^4.1.1",
  166. "lint-staged": "^11.1.2",
  167. "npm-run-all": "^4.1.5",
  168. "postcss": "^8.3.6",
  169. "prettier": "^2.4.0",
  170. "pretty-quick": "^3.1.1",
  171. "rimraf": "^3.0.2",
  172. "rollup-plugin-esbuild": "^3.0.2",
  173. "rollup-plugin-visualizer": "5.5.2",
  174. "stylelint": "^13.13.1",
  175. "stylelint-config-prettier": "^8.0.2",
  176. "stylelint-config-standard": "^22.0.0",
  177. "stylelint-order": "^4.1.0",
  178. "ts-jest": "^27.0.5",
  179. "ts-node": "^10.2.1",
  180. "typescript": "4.4.3",
  181. "vite": "2.5.7",
  182. "vite-plugin-compression": "^0.3.5",
  183. "vite-plugin-html": "^2.1.0",
  184. "vite-plugin-imagemin": "^0.4.5",
  185. "vite-plugin-mock": "^2.9.6",
  186. "vite-plugin-purge-icons": "^0.7.0",
  187. "vite-plugin-pwa": "^0.11.2",
  188. "vite-plugin-style-import": "^1.2.1",
  189. "vite-plugin-svg-icons": "^1.0.4",
  190. "vite-plugin-theme": "^0.8.1",
  191. "wait-on": "^5.2.1",
  192. "vite-plugin-vue-setup-extend": "^0.1.0",
  193. "vite-plugin-windicss": "^1.4.2",
  194. "vue-eslint-parser": "^7.11.0",
  195. "vue-tsc": "^0.3.0"
  196. },
  197. "resolutions": {
  198. "//": "Used to install imagemin dependencies, because imagemin may not be installed in China. If it is abroad, you can delete it",
  199. "bin-wrapper": "npm:bin-wrapper-china",
  200. "rollup": "^2.56.3"
  201. },
  202. "repository": {
  203. "type": "git",
  204. "url": "git+https://github.com/anncwb/vue-vben-admin.git"
  205. },
  206. "license": "MIT",
  207. "bugs": {
  208. "url": "https://github.com/anncwb/vue-vben-admin/issues"
  209. },
  210. "homepage": "https://github.com/anncwb/vue-vben-admin",
  211. "engines": {
  212. "node": "^12 || >=14"
  213. }
  214. }