package.json 2.5 KB

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