package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. "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.6",
  33. "font-awesome": "^4.7.0",
  34. "lodash-es": "^4.17.21",
  35. "mitt": "^2.1.0",
  36. "mockjs": "^1.1.0",
  37. "nprogress": "^0.2.0",
  38. "path": "^0.12.7",
  39. "path-to-regexp": "^6.2.0",
  40. "pinia": "^2.0.0-rc.6",
  41. "resize-observer-polyfill": "^1.5.1",
  42. "responsive-storage": "^1.0.4",
  43. "v-contextmenu": "^3.0.0",
  44. "vue": "^3.2.6",
  45. "vue-i18n": "^9.2.0-beta.3",
  46. "vue-json-pretty": "^2.0.2",
  47. "vue-router": "^4.0.11",
  48. "vue-types": "^4.0.3",
  49. "vuedraggable": "^4.1.0",
  50. "vxe-table": "^4.0.27",
  51. "wangeditor": "^4.7.7",
  52. "xe-ajax": "^4.0.5",
  53. "xe-utils": "^3.3.1",
  54. "xgplayer": "^2.28.0"
  55. },
  56. "devDependencies": {
  57. "@types/mockjs": "^1.0.3",
  58. "@types/node": "^14.14.14",
  59. "@types/nprogress": "^0.2.0",
  60. "@typescript-eslint/eslint-plugin": "^4.28.1",
  61. "@typescript-eslint/parser": "^4.28.1",
  62. "@vitejs/plugin-vue": "^1.6.0",
  63. "@vitejs/plugin-vue-jsx": "^1.1.7",
  64. "@vue/compiler-sfc": "^3.2.6",
  65. "@vue/eslint-config-prettier": "^6.0.0",
  66. "@vue/eslint-config-typescript": "^7.0.0",
  67. "autoprefixer": "^10.2.4",
  68. "babel-plugin-transform-remove-console": "^6.9.4",
  69. "chalk": "^2.4.2",
  70. "cross-env": "^7.0.3",
  71. "eslint": "^7.30.0",
  72. "eslint-plugin-prettier": "^3.4.0",
  73. "eslint-plugin-vue": "^7.12.1",
  74. "husky": "^6.0.0",
  75. "lint-staged": "^11.0.0",
  76. "postcss": "^8.2.6",
  77. "postcss-import": "^14.0.0",
  78. "prettier": "^2.3.2",
  79. "sass": "^1.38.0",
  80. "sass-loader": "^12.1.0",
  81. "typescript": "^4.2.4",
  82. "vite": "^2.5.1",
  83. "vite-plugin-element-plus": "^0.0.9",
  84. "vite-plugin-mock": "^2.9.6",
  85. "vite-plugin-style-import": "^1.2.1",
  86. "vue-eslint-parser": "^7.7.2"
  87. },
  88. "lint-staged": {
  89. "*.{js,jsx,vue,ts,tsx}": [
  90. "npm run lint",
  91. "git add"
  92. ]
  93. }
  94. }