package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. "@ffmpeg/ffmpeg": "^0.12.10",
  16. "@ffmpeg/util": "^0.12.1",
  17. "@primevue/themes": "^4.2.1",
  18. "@turf/turf": "^7.2.0",
  19. "@tweenjs/tween.js": "^25.0.0",
  20. "@vueuse/core": "^11.2.0",
  21. "animate.css": "^4.1.1",
  22. "autofit.js": "^3.2.1",
  23. "axios": "^1.7.7",
  24. "d3": "^7.9.0",
  25. "dayjs": "^1.11.13",
  26. "echarts": "^5.5.1",
  27. "echarts-gl": "^2.0.9",
  28. "echarts-liquidfill": "^3.1.0",
  29. "eslint-config-prettier": "^9.1.0",
  30. "fabric": "^6.4.3",
  31. "js-cookie": "^3.0.5",
  32. "lodash-es": "^4.17.21",
  33. "mitt": "^3.0.1",
  34. "mp4box": "^0.5.2",
  35. "native-file-system-adapter": "^3.0.1",
  36. "ol": "^10.4.0",
  37. "pinia": "^2.2.6",
  38. "primevue": "^4.2.1",
  39. "swiper": "^11.1.14",
  40. "three": "^0.172.0",
  41. "uuid": "^11.0.2",
  42. "v-calendar": "^2.4.2",
  43. "vue": "^3.5.12",
  44. "vue-awesome-swiper": "^5.0.1",
  45. "vue-echarts": "^7.0.3",
  46. "vue-i18n": "^10.0.4",
  47. "vue-router": "^4.4.5",
  48. "vue3-count-to": "^1.1.2",
  49. "vue3-seamless-scroll": "^2.0.1",
  50. "vuedraggable": "^2.24.3",
  51. "xgplayer": "^3.0.20"
  52. },
  53. "devDependencies": {
  54. "@commitlint/cli": "^19.5.0",
  55. "@commitlint/config-conventional": "^19.5.0",
  56. "@eslint/eslintrc": "^3.1.0",
  57. "@eslint/js": "^9.14.0",
  58. "@iconify/vue": "^4.1.2",
  59. "@primevue/auto-import-resolver": "^4.2.1",
  60. "@vitejs/plugin-basic-ssl": "^1.1.0",
  61. "@vitejs/plugin-vue": "^5.1.4",
  62. "@vitejs/plugin-vue-jsx": "^4.0.1",
  63. "autoprefixer": "^10.4.20",
  64. "commitlint": "^19.5.0",
  65. "consola": "^3.2.3",
  66. "eslint": "^9.14.0",
  67. "eslint-plugin-json-es": "^1.6.0",
  68. "eslint-plugin-oxlint": "^0.11.0",
  69. "eslint-plugin-prettier": "^5.2.1",
  70. "eslint-plugin-vue": "^9.30.0",
  71. "globals": "^15.12.0",
  72. "husky": "^9.1.6",
  73. "lint-staged": "^15.2.10",
  74. "oxlint": "^0.11.0",
  75. "prettier": "^3.3.3",
  76. "rollup-plugin-delete": "^2.1.0",
  77. "sass": "1.32.13",
  78. "unocss": "^0.64.0",
  79. "unplugin-auto-import": "^0.18.3",
  80. "unplugin-icons": "^0.20.0",
  81. "unplugin-vue-components": "^0.27.4",
  82. "vite": "^5.4.10",
  83. "vue-eslint-parser": "^9.4.3"
  84. },
  85. "engines": {
  86. "node": ">=18.0.0"
  87. },
  88. "lint-staged": {
  89. "**/*.{html,vue,ts,cjs,json,md}": [
  90. "prettier --write"
  91. ],
  92. "**/*.{vue,js,ts,jsx,tsx}": [
  93. "oxlint --fix && eslint --fix"
  94. ]
  95. }
  96. }