package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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": "^5.0.3",
  25. "await-to-js": "^3.0.0",
  26. "axios": "^0.21.1",
  27. "cropperjs": "^1.5.11",
  28. "dayjs": "^1.10.5",
  29. "dotenv": "^8.2.0",
  30. "echarts": "^5.1.1",
  31. "element-plus": "^1.0.2-beta.53",
  32. "font-awesome": "^4.7.0",
  33. "lodash-es": "^4.17.21",
  34. "mitt": "^2.1.0",
  35. "mockjs": "^1.1.0",
  36. "nprogress": "^0.2.0",
  37. "path": "^0.12.7",
  38. "path-to-regexp": "^6.2.0",
  39. "pinia": "^2.0.0-beta.2",
  40. "resize-observer-polyfill": "^1.5.1",
  41. "responsive-storage": "^1.0.4",
  42. "v-contextmenu": "^3.0.0",
  43. "vue": "^3.1.2",
  44. "vue-i18n": "^9.1.6",
  45. "vue-json-pretty": "^2.0.2",
  46. "vue-router": "^4.0.9",
  47. "vue-types": "^3.0.2",
  48. "vuedraggable": "^4.0.3",
  49. "vxe-table": "^4.0.21",
  50. "wangeditor": "^4.0.3",
  51. "xe-ajax": "^4.0.5",
  52. "xe-utils": "^3.2.1",
  53. "xgplayer": "^2.22.1"
  54. },
  55. "devDependencies": {
  56. "@types/mockjs": "^1.0.3",
  57. "@types/node": "^14.14.14",
  58. "@types/nprogress": "^0.2.0",
  59. "@typescript-eslint/eslint-plugin": "^4.28.1",
  60. "@typescript-eslint/parser": "^4.28.1",
  61. "@vitejs/plugin-vue": "^1.2.4",
  62. "@vitejs/plugin-vue-jsx": "^1.1.6",
  63. "@vue/compiler-sfc": "^3.1.2",
  64. "@vue/eslint-config-prettier": "^6.0.0",
  65. "@vue/eslint-config-typescript": "^7.0.0",
  66. "autoprefixer": "^10.2.4",
  67. "babel-plugin-transform-remove-console": "^6.9.4",
  68. "chalk": "^2.4.2",
  69. "cross-env": "^7.0.3",
  70. "eslint": "^7.30.0",
  71. "eslint-plugin-prettier": "^3.4.0",
  72. "eslint-plugin-vue": "^7.12.1",
  73. "husky": "^6.0.0",
  74. "lint-staged": "^11.0.0",
  75. "postcss": "^8.2.6",
  76. "postcss-import": "^14.0.0",
  77. "prettier": "^2.3.2",
  78. "sass": "^1.32.8",
  79. "sass-loader": "^11.0.1",
  80. "typescript": "^4.2.4",
  81. "vite": "^2.3.8",
  82. "vite-plugin-mock": "^2.8.0",
  83. "vite-plugin-style-import": "^1.0.1",
  84. "vue-eslint-parser": "^7.7.2"
  85. },
  86. "lint-staged": {
  87. "*.{js,jsx,vue,ts,tsx}": [
  88. "npm run lint",
  89. "git add"
  90. ]
  91. }
  92. }