package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "vue3-vite-template",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite --host",
  8. "build": "vite build",
  9. "preview": "vite preview",
  10. "lint": "oxlint && eslint",
  11. "lint:fix": "oxlint --fix && eslint --fix",
  12. "preinstall": "npx only-allow pnpm"
  13. },
  14. "dependencies": {
  15. "@primevue/themes": "^4.2.1",
  16. "@vueuse/core": "^11.2.0",
  17. "animate.css": "^4.1.1",
  18. "autofit.js": "^3.2.1",
  19. "axios": "^1.7.7",
  20. "dayjs": "^1.11.13",
  21. "echarts": "^5.5.1",
  22. "echarts-liquidfill": "^3.1.0",
  23. "eslint-config-prettier": "^9.1.0",
  24. "fabric": "^6.4.3",
  25. "js-cookie": "^3.0.5",
  26. "lodash-es": "^4.17.21",
  27. "mitt": "^3.0.1",
  28. "pinia": "^2.2.6",
  29. "primevue": "^4.2.1",
  30. "swiper": "^11.1.14",
  31. "uuid": "^11.0.2",
  32. "v-calendar": "^2.4.2",
  33. "vue": "^3.5.12",
  34. "vue-awesome-swiper": "^5.0.1",
  35. "vue-echarts": "^7.0.3",
  36. "vue-i18n": "^10.0.4",
  37. "vue-router": "^4.4.5",
  38. "vue3-count-to": "^1.1.2",
  39. "vue3-seamless-scroll": "^2.0.1",
  40. "vuedraggable": "^2.24.3",
  41. "xgplayer": "^3.0.20"
  42. },
  43. "devDependencies": {
  44. "@commitlint/cli": "^19.5.0",
  45. "@commitlint/config-conventional": "^19.5.0",
  46. "@eslint/eslintrc": "^3.1.0",
  47. "@eslint/js": "^9.14.0",
  48. "@iconify/vue": "^4.1.2",
  49. "@primevue/auto-import-resolver": "^4.2.1",
  50. "@vitejs/plugin-basic-ssl": "^1.1.0",
  51. "@vitejs/plugin-vue": "^5.1.4",
  52. "@vitejs/plugin-vue-jsx": "^4.0.1",
  53. "autoprefixer": "^10.4.20",
  54. "commitlint": "^19.5.0",
  55. "consola": "^3.2.3",
  56. "eslint": "^9.14.0",
  57. "eslint-plugin-json-es": "^1.6.0",
  58. "eslint-plugin-oxlint": "^0.11.0",
  59. "eslint-plugin-prettier": "^5.2.1",
  60. "eslint-plugin-vue": "^9.30.0",
  61. "globals": "^15.12.0",
  62. "husky": "^9.1.6",
  63. "lint-staged": "^15.2.10",
  64. "oxlint": "^0.11.0",
  65. "prettier": "^3.3.3",
  66. "rollup-plugin-delete": "^2.1.0",
  67. "sass": "1.32.13",
  68. "unocss": "^0.64.0",
  69. "unplugin-auto-import": "^0.18.3",
  70. "unplugin-icons": "^0.20.0",
  71. "unplugin-vue-components": "^0.27.4",
  72. "vite": "^5.4.10",
  73. "vue-eslint-parser": "^9.4.3"
  74. },
  75. "engines": {
  76. "node": ">=18.0.0"
  77. },
  78. "lint-staged": {
  79. "**/*.{html,vue,ts,cjs,json,md}": [
  80. "prettier --write"
  81. ],
  82. "**/*.{vue,js,ts,jsx,tsx}": [
  83. "oxlint --fix && eslint --fix"
  84. ]
  85. }
  86. }