package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "vue-project",
  3. "version": "0.0.0",
  4. "private": true,
  5. "type": "module",
  6. "engines": {
  7. "node": "^20.19.0 || >=22.12.0"
  8. },
  9. "scripts": {
  10. "dev": "vite --host",
  11. "build": "run-p type-check \"build-only {@}\" --",
  12. "preview": "vite preview",
  13. "build-only": "vite build",
  14. "type-check": "vue-tsc --build",
  15. "lint": "eslint . --fix --cache",
  16. "format": "prettier --write src/"
  17. },
  18. "dependencies": {
  19. "axios": "^1.12.2",
  20. "nanoid": "^5.1.6",
  21. "normalize.css": "^8.0.1",
  22. "nprogress": "^0.2.0",
  23. "pinia": "^3.0.3",
  24. "pinia-plugin-persistedstate": "^4.5.0",
  25. "qs": "^6.14.0",
  26. "v-viewer": "^3.0.22",
  27. "vant": "^4.9.21",
  28. "viewerjs": "^1.11.7",
  29. "vue": "^3.5.22",
  30. "vue-dompurify-html": "^5.3.0",
  31. "vue-router": "^4.6.3"
  32. },
  33. "devDependencies": {
  34. "@tsconfig/node22": "^22.0.2",
  35. "@types/node": "^22.18.11",
  36. "@types/qs": "^6.14.0",
  37. "@vant/auto-import-resolver": "^1.3.0",
  38. "@vitejs/plugin-vue": "^6.0.1",
  39. "@vue/eslint-config-prettier": "^10.2.0",
  40. "@vue/eslint-config-typescript": "^14.6.0",
  41. "@vue/tsconfig": "^0.8.1",
  42. "eslint": "^9.37.0",
  43. "eslint-plugin-vue": "~10.5.0",
  44. "jiti": "^2.6.1",
  45. "npm-run-all2": "^8.0.4",
  46. "picocolors": "^1.1.1",
  47. "prettier": "3.6.2",
  48. "typescript": "~5.9.0",
  49. "unplugin-auto-import": "^20.2.0",
  50. "unplugin-vue-components": "^30.0.0",
  51. "vite": "^7.1.11",
  52. "vite-plugin-vue-devtools": "^8.0.3",
  53. "vue-tsc": "^3.1.1"
  54. }
  55. }