package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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": "vue-tsc --noEmit && vite build",
  19. "build:dev": "vite build",
  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. "@vant/use": "^1.5.2",
  27. "@vicons/ionicons5": "^0.12.0",
  28. "@vueuse/core": "^10.2.0",
  29. "animate.css": "^4.1.1",
  30. "clean-deep": "^3.4.0",
  31. "cropperjs": "^1.5.13",
  32. "dayjs": "^1.11.7",
  33. "echarts": "^5.4.2",
  34. "html2canvas": "^1.4.1",
  35. "lib-flexible": "^0.3.2",
  36. "lodash": "^4.17.21",
  37. "lodash-es": "^4.17.21",
  38. "moveable": "^0.49.0",
  39. "numeral": "^2.0.6",
  40. "pinia": "^2.1.4",
  41. "plyr": "^3.7.8",
  42. "postcss-px2rem": "^0.3.0",
  43. "px2rem-loader": "^0.1.9",
  44. "query-string": "^8.1.0",
  45. "terser": "^5.18.2",
  46. "umi-request": "^1.4.0",
  47. "vite-plugin-pwa": "^0.16.4",
  48. "vudio.js": "^1.0.3",
  49. "vue": "^3.3.4",
  50. "vue-qr": "^4.0.9",
  51. "vue-router": "^4.1.6",
  52. "vue3-lottie": "^2.7.0",
  53. "vuedraggable": "^4.1.0",
  54. "wavesurfer.js": "^7.0.0-beta.11"
  55. },
  56. "devDependencies": {
  57. "@babel/core": "^7.21.4",
  58. "@babel/preset-env": "^7.21.4",
  59. "@types/crypto-js": "^4.1.1",
  60. "@types/node": "^16.18.23",
  61. "@types/numeral": "^2.0.2",
  62. "@typescript-eslint/eslint-plugin": "^5.57.1",
  63. "@typescript-eslint/parser": "^5.57.1",
  64. "@vitejs/plugin-legacy": "^4.1.0",
  65. "@vitejs/plugin-vue": "^4.1.0",
  66. "@vitejs/plugin-vue-jsx": "^3.0.1",
  67. "@vue/babel-plugin-jsx": "^1.1.1",
  68. "@vue/compiler-sfc": "^3.2.47",
  69. "@vue/eslint-config-prettier": "^7.1.0",
  70. "@vue/eslint-config-typescript": "^11.0.2",
  71. "autoprefixer": "^10.4.14",
  72. "babel-plugin-dynamic-import-node": "^2.3.3",
  73. "crypto-js": "^4.1.1",
  74. "eslint": "^8.38.0",
  75. "eslint-plugin-prettier": "^4.2.1",
  76. "eslint-plugin-vue": "^9.10.0",
  77. "husky": "^8.0.0",
  78. "less": "^4.1.3",
  79. "lint-staged": "^13.2.2",
  80. "naive-ui": "^2.34.4",
  81. "plop": "^3.1.2",
  82. "postcss-px-to-viewport": "^1.1.1",
  83. "prettier": "^2.8.7",
  84. "typescript": "^5.0.4",
  85. "unplugin-vue-components": "^0.24.1",
  86. "vite": "^4.2.1",
  87. "vite-plugin-eslint": "^1.8.1",
  88. "vite-plugin-mkcert": "^1.15.0",
  89. "vue-eslint-parser": "^9.1.1",
  90. "vue-tsc": "^1.2.0",
  91. "yorkie": "^2.0.0"
  92. },
  93. "gitHooks": {
  94. "pre-commit": "lint-staged"
  95. },
  96. "lint-staged": {
  97. "*.{js,jsx,vue,ts,tsx}": [
  98. "eslint --fix"
  99. ]
  100. },
  101. "engines": {
  102. "node": ">=14.20.0"
  103. },
  104. "config": {
  105. "commitizen": {
  106. "path": "./node_modules/cz-conventional-changelog"
  107. }
  108. }
  109. }