package.json 3.2 KB

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