package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "h5-colexiu-website",
  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. },
  23. "dependencies": {
  24. "@vant/use": "^1.6.0",
  25. "@vueuse/core": "^10.5.0",
  26. "clean-deep": "^3.4.0",
  27. "dayjs": "^1.11.7",
  28. "html2canvas": "^1.4.1",
  29. "numeral": "^2.0.6",
  30. "pinia": "^2.0.34",
  31. "plyr": "^3.7.8",
  32. "query-string": "^8.1.0",
  33. "rollup-plugin-terser": "^7.0.2",
  34. "swiper": "^11.0.3",
  35. "umi-request": "^1.4.0",
  36. "vant": "^4.1.2",
  37. "vue": "^3.2.47",
  38. "vue-router": "^4.1.6",
  39. "vue3-lottie": "^3.2.0"
  40. },
  41. "devDependencies": {
  42. "@babel/core": "^7.21.4",
  43. "@babel/preset-env": "^7.21.4",
  44. "@types/node": "^16.18.23",
  45. "@typescript-eslint/eslint-plugin": "^5.57.1",
  46. "@typescript-eslint/parser": "^5.57.1",
  47. "@vitejs/plugin-legacy": "^4.1.1",
  48. "@vitejs/plugin-vue": "^4.1.0",
  49. "@vitejs/plugin-vue-jsx": "^3.0.1",
  50. "@vue/babel-plugin-jsx": "^1.1.1",
  51. "@vue/compiler-sfc": "^3.2.47",
  52. "@vue/eslint-config-prettier": "^7.1.0",
  53. "@vue/eslint-config-typescript": "^11.0.2",
  54. "autoprefixer": "^10.4.14",
  55. "babel-plugin-dynamic-import-node": "^2.3.3",
  56. "eslint": "^8.38.0",
  57. "eslint-plugin-prettier": "^4.2.1",
  58. "eslint-plugin-vue": "^9.10.0",
  59. "less": "^4.2.0",
  60. "lint-staged": "^13.2.1",
  61. "plop": "^3.1.2",
  62. "postcss": "^8.4.21",
  63. "postcss-pxtorem": "^6.0.0",
  64. "prettier": "^2.8.7",
  65. "terser": "^5.24.0",
  66. "typescript": "^5.0.4",
  67. "unplugin-vue-components": "^0.24.1",
  68. "vite": "^4.2.1",
  69. "vite-plugin-eslint": "^1.8.1",
  70. "vue-eslint-parser": "^9.1.1",
  71. "vue-tsc": "^1.2.0",
  72. "yorkie": "^2.0.0"
  73. },
  74. "gitHooks": {
  75. "pre-commit": "lint-staged"
  76. },
  77. "lint-staged": {
  78. "*.{js,jsx,vue,ts,tsx}": [
  79. "eslint"
  80. ]
  81. },
  82. "engines": {
  83. "node": ">=14.20.0"
  84. }
  85. }