package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "vue-pure-admin",
  3. "version": "2.0.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "cross-env --max_old_space_size=4096 vite",
  7. "serve": "cross-env --max_old_space_size=4096 vite",
  8. "build": "cross-env vite build",
  9. "preview": "vite preview",
  10. "preview:build": "npm run build && vite preview",
  11. "lint": "eslint --ext .js,.jsx,.vue,.ts,.tsx src"
  12. },
  13. "husky": {
  14. "hooks": {
  15. "commit-msg": "node scripts/verify-commit.js",
  16. "pre-commit": "lint-staged"
  17. }
  18. },
  19. "dependencies": {
  20. "@amap/amap-jsapi-loader": "^1.0.1",
  21. "@logicflow/core": "^0.4.6",
  22. "@logicflow/extension": "^0.4.6",
  23. "@vueuse/core": "^5.0.3",
  24. "await-to-js": "^3.0.0",
  25. "axios": "^0.21.1",
  26. "cropperjs": "^1.5.11",
  27. "dayjs": "^1.10.5",
  28. "dotenv": "^8.2.0",
  29. "echarts": "^5.1.1",
  30. "element-plus": "^1.0.2-beta.53",
  31. "font-awesome": "^4.7.0",
  32. "lodash-es": "^4.17.21",
  33. "mitt": "^2.1.0",
  34. "mockjs": "^1.1.0",
  35. "nprogress": "^0.2.0",
  36. "path": "^0.12.7",
  37. "path-to-regexp": "^6.2.0",
  38. "pinia": "^2.0.0-beta.2",
  39. "resize-observer-polyfill": "^1.5.1",
  40. "responsive-storage": "^1.0.4",
  41. "v-contextmenu": "^3.0.0",
  42. "vue": "^3.1.2",
  43. "vue-i18n": "^9.1.6",
  44. "vue-json-pretty": "^2.0.2",
  45. "vue-router": "^4.0.9",
  46. "vue-types": "^3.0.2",
  47. "vuedraggable": "^4.0.3",
  48. "vxe-table": "^4.0.21",
  49. "wangeditor": "^4.0.3",
  50. "xe-ajax": "^4.0.5",
  51. "xe-utils": "^3.2.1",
  52. "xgplayer": "^2.22.1"
  53. },
  54. "devDependencies": {
  55. "@types/mockjs": "^1.0.3",
  56. "@types/node": "^14.14.14",
  57. "@types/nprogress": "^0.2.0",
  58. "@typescript-eslint/eslint-plugin": "^4.28.1",
  59. "@typescript-eslint/parser": "^4.28.1",
  60. "@vitejs/plugin-vue": "^1.2.4",
  61. "@vitejs/plugin-vue-jsx": "^1.1.6",
  62. "@vue/compiler-sfc": "^3.1.2",
  63. "@vue/eslint-config-prettier": "^6.0.0",
  64. "@vue/eslint-config-typescript": "^7.0.0",
  65. "autoprefixer": "^10.2.4",
  66. "babel-plugin-transform-remove-console": "^6.9.4",
  67. "chalk": "^2.4.2",
  68. "cross-env": "^7.0.3",
  69. "eslint": "^7.30.0",
  70. "eslint-plugin-prettier": "^3.4.0",
  71. "eslint-plugin-vue": "^7.12.1",
  72. "husky": "^6.0.0",
  73. "lint-staged": "^11.0.0",
  74. "postcss": "^8.2.6",
  75. "postcss-import": "^14.0.0",
  76. "prettier": "^2.3.2",
  77. "sass": "^1.32.8",
  78. "sass-loader": "^11.0.1",
  79. "typescript": "^4.2.4",
  80. "vite": "^2.3.8",
  81. "vite-plugin-mock": "^2.8.0",
  82. "vite-plugin-style-import": "^1.0.1",
  83. "vue-eslint-parser": "^7.7.2"
  84. },
  85. "lint-staged": {
  86. "*.{js,jsx,vue,ts,tsx}": [
  87. "npm run lint",
  88. "git add"
  89. ]
  90. }
  91. }