package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. "@tencentcloud/chat": "^3.1.1",
  27. "@tencentcloud/chat-uikit-vue": "^1.4.5",
  28. "@vant/use": "^1.5.2",
  29. "@vicons/ionicons5": "^0.12.0",
  30. "@vueuse/core": "^10.2.0",
  31. "animate.css": "^4.1.1",
  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. "rtc-ai-denoiser": "^1.1.3",
  49. "terser": "^5.18.2",
  50. "tim-js-sdk": "^2.27.5",
  51. "tim-profanity-filter-plugin": "^0.9.0",
  52. "tim-upload-plugin": "^1.0.6",
  53. "trtc-js-sdk": "^4.15.12",
  54. "tsignaling": "^1.0.6",
  55. "umi-request": "^1.4.0",
  56. "vite-plugin-pwa": "^0.16.4",
  57. "vudio.js": "^1.0.3",
  58. "vue": "^3.3.4",
  59. "vue-qr": "^4.0.9",
  60. "vue-router": "^4.1.6",
  61. "vue3-lottie": "^2.7.0",
  62. "vuedraggable": "^4.1.0",
  63. "vuex": "^4.1.0",
  64. "wavesurfer.js": "^7.0.0-beta.11"
  65. },
  66. "devDependencies": {
  67. "@babel/core": "^7.21.4",
  68. "@babel/preset-env": "^7.21.4",
  69. "@types/crypto-js": "^4.1.1",
  70. "@types/node": "^16.18.23",
  71. "@types/numeral": "^2.0.2",
  72. "@typescript-eslint/eslint-plugin": "^5.57.1",
  73. "@typescript-eslint/parser": "^5.57.1",
  74. "@vitejs/plugin-legacy": "^4.1.0",
  75. "@vitejs/plugin-vue": "^4.1.0",
  76. "@vitejs/plugin-vue-jsx": "^3.0.1",
  77. "@vue/babel-plugin-jsx": "^1.1.1",
  78. "@vue/compiler-sfc": "^3.2.47",
  79. "@vue/eslint-config-prettier": "^7.1.0",
  80. "@vue/eslint-config-typescript": "^11.0.2",
  81. "autoprefixer": "^10.4.14",
  82. "babel-plugin-dynamic-import-node": "^2.3.3",
  83. "crypto-js": "^4.1.1",
  84. "eslint": "^8.38.0",
  85. "eslint-plugin-prettier": "^4.2.1",
  86. "eslint-plugin-vue": "^9.10.0",
  87. "husky": "^8.0.0",
  88. "less": "^4.1.3",
  89. "lint-staged": "^13.2.2",
  90. "naive-ui": "^2.34.4",
  91. "plop": "^3.1.2",
  92. "postcss-px-to-viewport": "^1.1.1",
  93. "prettier": "^2.8.7",
  94. "sass": "^1.64.1",
  95. "sass-loader": "^10.1.1",
  96. "typescript": "^5.0.4",
  97. "unplugin-vue-components": "^0.24.1",
  98. "vite": "^4.2.1",
  99. "vite-plugin-eslint": "^1.8.1",
  100. "vite-plugin-mkcert": "^1.15.0",
  101. "vue-eslint-parser": "^9.1.1",
  102. "vue-tsc": "^1.2.0",
  103. "yorkie": "^2.0.0"
  104. },
  105. "gitHooks": {
  106. "pre-commit": "lint-staged"
  107. },
  108. "lint-staged": {
  109. "*.{js,jsx,vue,ts,tsx}": [
  110. "eslint --fix"
  111. ]
  112. },
  113. "engines": {
  114. "node": ">=14.20.0"
  115. },
  116. "config": {
  117. "commitizen": {
  118. "path": "./node_modules/cz-conventional-changelog"
  119. }
  120. }
  121. }