package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "name": "vue-vite-h5",
  3. "version": "0.2.0",
  4. "license": "MIT",
  5. "author": "LZHD",
  6. "description": "Developing with Vue 3 and Typescript in Vite.",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/LZHD/vue-vite-h5"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/LZHD/vue-vite-h5/issues"
  13. },
  14. "homepage": "https://github.com/LZHD/vue-vite-h5#readme",
  15. "scripts": {
  16. "dev": "vite",
  17. "start": "npm run dev",
  18. "build:prod": "vue-tsc --noEmit && vite build",
  19. "build:dev": "vue-tsc --noEmit && vite build --mode development",
  20. "serve": "vite preview",
  21. "lint": "eslint --ext .js,.jsx,.vue,.ts,.tsx src",
  22. "generate": "plop",
  23. "prepare": "husky install"
  24. },
  25. "dependencies": {
  26. "@amap/amap-jsapi-loader": "^1.0.1",
  27. "@vant/touch-emulator": "^1.4.0",
  28. "@vant/use": "^1.5.1",
  29. "@vueuse/core": "^10.1.2",
  30. "clean-deep": "^3.4.0",
  31. "cos-js-sdk-v5": "^1.4.21",
  32. "dayjs": "^1.11.7",
  33. "echarts": "^5.4.2",
  34. "eventemitter3": "^5.0.1",
  35. "howler": "^2.2.3",
  36. "html2canvas": "^1.4.1",
  37. "mobile-drag-drop": "^3.0.0-rc.0",
  38. "moveable": "^0.52.0",
  39. "naive-ui": "^2.34.4",
  40. "numeral": "^2.0.6",
  41. "pinia": "^2.0.36",
  42. "plyr": "^3.7.8",
  43. "qrcode": "^1.5.3",
  44. "query-string": "^8.1.0",
  45. "swiper": "^9.3.2",
  46. "tcplayer.js": "^4.8.0",
  47. "terser": "^5.17.6",
  48. "umi-request": "^1.4.0",
  49. "vant": "^4.1.2",
  50. "vconsole": "^3.15.0",
  51. "vudio.js": "^1.0.3",
  52. "vue": "^3.2.47",
  53. "vue-awesome-swiper": "^5.0.1",
  54. "vue-cropper": "^1.1.1",
  55. "vue-router": "^4.1.6",
  56. "vue3-lottie": "^2.7.0",
  57. "vuedraggable": "^4.1.0",
  58. "wavesurfer.js": "^7.4.2",
  59. "webpack-merge": "^5.9.0"
  60. },
  61. "devDependencies": {
  62. "@babel/core": "^7.21.4",
  63. "@babel/preset-env": "^7.21.4",
  64. "@types/node": "^16.18.23",
  65. "@typescript-eslint/eslint-plugin": "^5.57.1",
  66. "@typescript-eslint/parser": "^5.57.1",
  67. "@vitejs/plugin-legacy": "^4.0.3",
  68. "@vitejs/plugin-vue": "^4.1.0",
  69. "@vitejs/plugin-vue-jsx": "^3.0.1",
  70. "@vue/babel-plugin-jsx": "^1.1.1",
  71. "@vue/compiler-sfc": "^3.2.47",
  72. "@vue/eslint-config-prettier": "^7.1.0",
  73. "@vue/eslint-config-typescript": "^11.0.2",
  74. "autoprefixer": "^10.4.14",
  75. "babel-plugin-dynamic-import-node": "^2.3.3",
  76. "eslint": "^8.38.0",
  77. "eslint-plugin-prettier": "^4.2.1",
  78. "eslint-plugin-vue": "^9.10.0",
  79. "husky": "^8.0.0",
  80. "less": "^4.1.3",
  81. "lint-staged": "^13.2.2",
  82. "plop": "^3.1.2",
  83. "postcss": "^8.4.21",
  84. "postcss-pxtorem": "^6.0.0",
  85. "prettier": "^2.8.7",
  86. "typescript": "^5.0.4",
  87. "unplugin-vue-components": "^0.24.1",
  88. "vite": "^4.2.1",
  89. "vite-plugin-eslint": "^1.8.1",
  90. "vue-eslint-parser": "^9.1.1",
  91. "vue-tsc": "^1.2.0",
  92. "yorkie": "^2.0.0"
  93. },
  94. "gitHooks": {
  95. "pre-commit": "lint-staged"
  96. },
  97. "lint-staged": {
  98. "*.{js,jsx,vue,ts,tsx}": [
  99. "eslint --fix"
  100. ]
  101. },
  102. "engines": {
  103. "node": ">=14.20.0"
  104. },
  105. "config": {
  106. "commitizen": {
  107. "path": "./node_modules/cz-conventional-changelog"
  108. }
  109. }
  110. }