package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "name": "vue-admin-perfect",
  3. "private": true,
  4. "version": "0.0.0",
  5. "scripts": {
  6. "dev": "vite",
  7. "build:dev": "vite build --mode development",
  8. "build:test": "vite build --mode test",
  9. "build:prod": "vite build --mode production",
  10. "commit": "git add -A && czg && git push",
  11. "build": "vite build",
  12. "preview": "vite preview",
  13. "build:ts": "vue-tsc --noEmit --skipLibCheck && vite build",
  14. "lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx",
  15. "lint:fix": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
  16. "lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
  17. "prepare": "husky install"
  18. },
  19. "dependencies": {
  20. "@better-scroll/core": "^2.4.2",
  21. "@vueuse/core": "^9.1.1",
  22. "@wangeditor/editor": "^5.1.14",
  23. "@wangeditor/editor-for-vue": "^5.1.12",
  24. "axios": "^0.27.2",
  25. "clipboard": "^2.0.10",
  26. "codemirror": "^5.65.9",
  27. "core-js": "^3.6.5",
  28. "crypto-js": "^4.2.0",
  29. "dayjs": "^1.11.4",
  30. "echarts": "^5.3.1",
  31. "element-plus": "^2.2.28",
  32. "exceljs": "^4.3.0",
  33. "file-saver": "^2.0.5",
  34. "fuse.js": "^6.6.2",
  35. "jszip": "^3.9.1",
  36. "mavon-editor": "^2.10.4",
  37. "md-editor-v3": "^1.11.3",
  38. "nprogress": "^0.2.0",
  39. "path-browserify": "^1.0.1",
  40. "path-to-regexp": "^6.2.0",
  41. "pinia": "^2.0.21",
  42. "pinia-plugin-persistedstate": "^2.1.1",
  43. "pinyin-pro": "^3.27.0",
  44. "print-js": "^1.6.0",
  45. "qrcodejs2": "^0.0.2",
  46. "qrcodejs2-fix": "^0.0.1",
  47. "raf": "^3.4.1",
  48. "resize-observer-polyfill": "^1.5.1",
  49. "sass": "^1.54.0",
  50. "splitpanes": "^3.1.1",
  51. "svg-sprite-loader": "^6.0.11",
  52. "vue": "^3.2.39",
  53. "vue-cropper": "^1.0.3",
  54. "vue-cropperjs": "^5.0.0",
  55. "vue-fuse": "^4.1.1",
  56. "vue-i18n": "^11.1.12",
  57. "vue-mugen-scroll": "^0.2.6",
  58. "vue-qr": "^4.0.6",
  59. "vue-router": "^4.1.6",
  60. "vue-splitpane": "^1.0.6",
  61. "vue3-text-clamp": "^0.1.1",
  62. "vuedraggable": "^4.1.0",
  63. "vuex": "^4.0.0-0",
  64. "xlsx": "^0.18.5"
  65. },
  66. "devDependencies": {
  67. "@element-plus/icons-vue": "^2.3.1",
  68. "@typescript-eslint/eslint-plugin": "^5.32.0",
  69. "@typescript-eslint/parser": "^5.32.0",
  70. "@vitejs/plugin-vue": "^3.0.0",
  71. "@vue/eslint-config-typescript": "^12.0.0",
  72. "commitizen": "^4.2.5",
  73. "consola": "^2.15.3",
  74. "cz-git": "^1.3.12",
  75. "czg": "^1.3.12",
  76. "dart-sass": "^1.25.0",
  77. "eslint": "^8.21.0",
  78. "eslint-config-prettier": "^8.5.0",
  79. "eslint-plugin-prettier": "^4.2.1",
  80. "eslint-plugin-vue": "^9.3.0",
  81. "fast-glob": "^3.2.11",
  82. "husky": "^7.0.4",
  83. "lint-staged": "^12.3.4",
  84. "mrm": "^3.0.10",
  85. "prettier": "^2.7.1",
  86. "sass-loader": "^10.5.2",
  87. "typescript": "^4.6.4",
  88. "unplugin-auto-import": "^0.10.3",
  89. "unplugin-vue-components": "^0.21.2",
  90. "unplugin-vue-define-options": "^0.7.3",
  91. "vite": "^3.0.0",
  92. "vite-plugin-compression": "^0.5.1",
  93. "vite-plugin-style-import": "^2.0.0",
  94. "vite-plugin-svg-icons": "^2.0.1",
  95. "vite-plugin-vue-setup-extend": "^0.4.0",
  96. "vue-tsc": "^0.38.4"
  97. },
  98. "config": {
  99. "commitizen": {
  100. "path": "node_modules/cz-git"
  101. }
  102. },
  103. "lint-staged": {
  104. "src/**/*.{vue,js,ts,jsx,tsx}": [
  105. "npm run lint:prettier",
  106. "npm run lint:fix",
  107. "git add ."
  108. ]
  109. }
  110. }