package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. "serve": "vite preview",
  20. "lint": "eslint --ext .js,.jsx,.vue,.ts,.tsx src",
  21. "generate": "plop",
  22. "prepare": "husky install"
  23. },
  24. "dependencies": {
  25. "@vant/use": "^1.5.2",
  26. "@vueuse/core": "^10.2.0",
  27. "clean-deep": "^3.4.0",
  28. "dayjs": "^1.11.7",
  29. "echarts": "^5.4.2",
  30. "moveable": "^0.49.0",
  31. "numeral": "^2.0.6",
  32. "pinia": "^2.1.4",
  33. "plyr": "^3.7.8",
  34. "query-string": "^8.1.0",
  35. "umi-request": "^1.4.0",
  36. "vudio.js": "^1.0.3",
  37. "vue": "^3.3.4",
  38. "vue-router": "^4.1.6",
  39. "vue3-lottie": "^2.7.0",
  40. "wavesurfer.js": "^7.0.0-beta.11"
  41. },
  42. "devDependencies": {
  43. "@babel/core": "^7.21.4",
  44. "@babel/preset-env": "^7.21.4",
  45. "@types/crypto-js": "^4.1.1",
  46. "@types/node": "^16.18.23",
  47. "@types/numeral": "^2.0.2",
  48. "@typescript-eslint/eslint-plugin": "^5.57.1",
  49. "@typescript-eslint/parser": "^5.57.1",
  50. "@vitejs/plugin-vue": "^4.1.0",
  51. "@vitejs/plugin-vue-jsx": "^3.0.1",
  52. "@vue/babel-plugin-jsx": "^1.1.1",
  53. "@vue/compiler-sfc": "^3.2.47",
  54. "@vue/eslint-config-prettier": "^7.1.0",
  55. "@vue/eslint-config-typescript": "^11.0.2",
  56. "autoprefixer": "^10.4.14",
  57. "babel-plugin-dynamic-import-node": "^2.3.3",
  58. "crypto-js": "^4.1.1",
  59. "eslint": "^8.38.0",
  60. "eslint-plugin-prettier": "^4.2.1",
  61. "eslint-plugin-vue": "^9.10.0",
  62. "husky": "^8.0.0",
  63. "less": "^4.1.3",
  64. "lint-staged": "^13.2.2",
  65. "naive-ui": "^2.34.4",
  66. "plop": "^3.1.2",
  67. "postcss-px-to-viewport": "^1.1.1",
  68. "prettier": "^2.8.7",
  69. "typescript": "^5.0.4",
  70. "unplugin-vue-components": "^0.24.1",
  71. "vite": "^4.2.1",
  72. "vite-plugin-eslint": "^1.8.1",
  73. "vite-plugin-mkcert": "^1.15.0",
  74. "vue-eslint-parser": "^9.1.1",
  75. "vue-tsc": "^1.2.0",
  76. "yorkie": "^2.0.0"
  77. },
  78. "gitHooks": {
  79. "pre-commit": "lint-staged"
  80. },
  81. "lint-staged": {
  82. "*.{js,jsx,vue,ts,tsx}": [
  83. "eslint --fix"
  84. ]
  85. },
  86. "engines": {
  87. "node": ">=14.20.0"
  88. },
  89. "config": {
  90. "commitizen": {
  91. "path": "./node_modules/cz-conventional-changelog"
  92. }
  93. }
  94. }