package.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. {
  2. "name": "vue-pure-admin",
  3. "version": "3.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "cross-env --max_old_space_size=4096 vite",
  7. "serve": "pnpm dev",
  8. "build": "rimraf dist && cross-env vite build",
  9. "report": "rimraf dist && cross-env vite build",
  10. "deploy": "bash deploy.sh",
  11. "preview": "vite preview",
  12. "preview:build": "pnpm build && vite preview",
  13. "clean:cache": "rm -rf node_modules && rm -rf .eslintcache && pnpm install",
  14. "lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
  15. "lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
  16. "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,css,scss,postcss,less}\" --cache --cache-location node_modules/.cache/stylelint/",
  17. "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
  18. "lint:pretty": "pretty-quick --staged",
  19. "lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint",
  20. "prepare": "husky install",
  21. "preinstall": "npx only-allow pnpm"
  22. },
  23. "browserslist": [
  24. "> 1%",
  25. "not ie 11",
  26. "not op_mini all"
  27. ],
  28. "dependencies": {
  29. "@amap/amap-jsapi-loader": "^1.0.1",
  30. "@ctrl/tinycolor": "^3.4.0",
  31. "@logicflow/core": "0.7.1",
  32. "@logicflow/extension": "0.7.1",
  33. "@vueuse/core": "^7.6.2",
  34. "@vueuse/motion": "^2.0.0-beta.9",
  35. "@vueuse/shared": "^7.6.2",
  36. "animate.css": "^4.1.1",
  37. "axios": "^0.25.0",
  38. "cropperjs": "^1.5.11",
  39. "css-color-function": "^1.3.3",
  40. "dayjs": "^1.10.7",
  41. "driver.js": "^0.9.8",
  42. "echarts": "^5.3.0",
  43. "element-plus": "^2.0.3",
  44. "element-resize-detector": "^1.2.3",
  45. "js-cookie": "^3.0.1",
  46. "lodash-es": "^4.17.21",
  47. "lodash-unified": "^1.0.2",
  48. "mitt": "^3.0.0",
  49. "mockjs": "^1.1.0",
  50. "nprogress": "^0.2.0",
  51. "path": "^0.12.7",
  52. "pinia": "^2.0.11",
  53. "qs": "^6.10.1",
  54. "resize-observer-polyfill": "^1.5.1",
  55. "responsive-storage": "^1.0.11",
  56. "rgb-hex": "^4.0.0",
  57. "v-contextmenu": "3.0.0",
  58. "vue": "^3.2.31",
  59. "vue-i18n": "^9.2.0-beta.30",
  60. "vue-json-pretty": "^2.0.2",
  61. "vue-router": "^4.0.12",
  62. "vue-types": "^4.1.1",
  63. "vuedraggable": "4.1.0",
  64. "vxe-table": "^4.1.21",
  65. "wangeditor": "^4.7.9",
  66. "xe-utils": "^3.5.2",
  67. "xgplayer": "2.28.0"
  68. },
  69. "devDependencies": {
  70. "@commitlint/cli": "13.1.0",
  71. "@commitlint/config-conventional": "13.1.0",
  72. "@iconify-icons/ep": "^1.1.3",
  73. "@iconify-icons/fa": "^1.1.1",
  74. "@iconify-icons/fa-solid": "^1.1.2",
  75. "@iconify-icons/ri": "^1.1.1",
  76. "@iconify/vue": "^3.1.3",
  77. "@types/element-resize-detector": "1.1.3",
  78. "@types/js-cookie": "^3.0.1",
  79. "@types/lodash-es": "^4.17.6",
  80. "@types/mockjs": "1.0.3",
  81. "@types/node": "14.14.14",
  82. "@types/nprogress": "0.2.0",
  83. "@types/qs": "^6.9.7",
  84. "@typescript-eslint/eslint-plugin": "^5.10.2",
  85. "@typescript-eslint/parser": "^5.10.2",
  86. "@vitejs/plugin-legacy": "^1.7.0",
  87. "@vitejs/plugin-vue": "^2.2.0",
  88. "@vitejs/plugin-vue-jsx": "^1.3.4",
  89. "@vue/eslint-config-prettier": "^7.0.0",
  90. "@vue/eslint-config-typescript": "^10.0.0",
  91. "@zougt/vite-plugin-theme-preprocessor": "^1.4.4",
  92. "autoprefixer": "^10.4.2",
  93. "cross-env": "7.0.3",
  94. "eslint": "^8.8.0",
  95. "eslint-plugin-prettier": "^4.0.0",
  96. "eslint-plugin-vue": "^8.4.1",
  97. "font-awesome": "^4.7.0",
  98. "husky": "^7.0.4",
  99. "lint-staged": "11.1.2",
  100. "picocolors": "^1.0.0",
  101. "postcss": "^8.4.6",
  102. "postcss-html": "^1.3.0",
  103. "postcss-import": "14.0.0",
  104. "postcss-scss": "^4.0.3",
  105. "prettier": "^2.5.1",
  106. "pretty-quick": "3.1.1",
  107. "rimraf": "3.0.2",
  108. "rollup-plugin-visualizer": "^5.6.0",
  109. "sass": "^1.49.7",
  110. "sass-loader": "^12.4.0",
  111. "stylelint": "^14.3.0",
  112. "stylelint-config-html": "^1.0.0",
  113. "stylelint-config-prettier": "^9.0.3",
  114. "stylelint-config-recommended": "^6.0.0",
  115. "stylelint-config-standard": "^24.0.0",
  116. "stylelint-order": "^5.0.0",
  117. "typescript": "^4.5.5",
  118. "unplugin-element-plus": "^0.2.0",
  119. "vite": "2.7.13",
  120. "vite-plugin-live-reload": "^2.1.0",
  121. "vite-plugin-mock": "^2.9.6",
  122. "vite-plugin-remove-console": "^0.0.6",
  123. "vite-plugin-style-import": "1.4.1",
  124. "vite-plugin-windicss": "^1.7.0",
  125. "vite-svg-loader": "2.2.0",
  126. "vue-eslint-parser": "^8.2.0",
  127. "windicss": "^3.4.3"
  128. },
  129. "repository": "git@github.com:xiaoxian521/vue-pure-admin.git",
  130. "author": "xiaoxian521",
  131. "license": "MIT"
  132. }