package.json 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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": "rimraf dist && 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. "lint-staged": "lint-staged"
  13. },
  14. "husky": {
  15. "hooks": {
  16. "commit-msg": "node scripts/verify-commit.js",
  17. "pre-commit": "npm run lint-staged"
  18. }
  19. },
  20. "dependencies": {
  21. "@amap/amap-jsapi-loader": "^1.0.1",
  22. "@logicflow/core": "^0.4.6",
  23. "@logicflow/extension": "^0.4.6",
  24. "@vueuse/core": "^6.0.0",
  25. "animate.css": "^4.1.1",
  26. "await-to-js": "^3.0.0",
  27. "axios": "^0.21.1",
  28. "cropperjs": "^1.5.11",
  29. "dayjs": "^1.10.6",
  30. "dotenv": "^8.2.0",
  31. "echarts": "^5.1.2",
  32. "element-plus": "^1.1.0-beta.8",
  33. "element-resize-detector": "^1.2.3",
  34. "font-awesome": "^4.7.0",
  35. "lodash-es": "^4.17.21",
  36. "mitt": "^2.1.0",
  37. "mockjs": "^1.1.0",
  38. "nprogress": "^0.2.0",
  39. "path": "^0.12.7",
  40. "path-to-regexp": "^6.2.0",
  41. "pinia": "^2.0.0-rc.6",
  42. "resize-observer-polyfill": "^1.5.1",
  43. "responsive-storage": "^1.0.4",
  44. "v-contextmenu": "^3.0.0",
  45. "vue": "^3.2.8",
  46. "vue-i18n": "^9.2.0-beta.3",
  47. "vue-json-pretty": "^2.0.2",
  48. "vue-router": "^4.0.11",
  49. "vue-types": "^4.0.3",
  50. "vuedraggable": "^4.1.0",
  51. "vxe-table": "^4.0.27",
  52. "wangeditor": "^4.7.7",
  53. "xe-ajax": "^4.0.5",
  54. "xe-utils": "^3.3.1",
  55. "xgplayer": "^2.28.0"
  56. },
  57. "devDependencies": {
  58. "@types/element-resize-detector": "^1.1.3",
  59. "@types/mockjs": "^1.0.3",
  60. "@types/node": "^14.14.14",
  61. "@types/nprogress": "^0.2.0",
  62. "@typescript-eslint/eslint-plugin": "^4.30.0",
  63. "@typescript-eslint/parser": "^4.30.0",
  64. "@vitejs/plugin-vue": "^1.6.0",
  65. "@vitejs/plugin-vue-jsx": "^1.1.7",
  66. "@vue/compiler-sfc": "^3.2.8",
  67. "@vue/eslint-config-prettier": "^6.0.0",
  68. "@vue/eslint-config-typescript": "^7.0.0",
  69. "autoprefixer": "^10.2.4",
  70. "babel-plugin-transform-remove-console": "^6.9.4",
  71. "chalk": "^2.4.2",
  72. "cross-env": "^7.0.3",
  73. "eslint": "^7.30.0",
  74. "eslint-plugin-prettier": "^3.4.0",
  75. "eslint-plugin-vue": "^7.17.0",
  76. "husky": "^6.0.0",
  77. "lint-staged": "^11.0.0",
  78. "postcss": "^8.2.6",
  79. "postcss-import": "^14.0.0",
  80. "prettier": "^2.3.2",
  81. "rimraf": "^3.0.2",
  82. "sass": "^1.38.0",
  83. "sass-loader": "^12.1.0",
  84. "typescript": "^4.4.2",
  85. "vite": "^2.5.3",
  86. "vite-plugin-element-plus": "^0.0.12",
  87. "vite-plugin-mock": "^2.9.6",
  88. "vite-plugin-style-import": "^1.2.1",
  89. "vite-svg-loader": "^2.2.0",
  90. "vue-eslint-parser": "^7.10.0"
  91. },
  92. "lint-staged": {
  93. "*.{js,jsx,vue,ts,tsx}": [
  94. "npm run lint",
  95. "git add"
  96. ]
  97. }
  98. }