package.json 3.1 KB

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