package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "type": "module",
  3. "private": true,
  4. "scripts": {
  5. "build": "vite build",
  6. "dev": "vite --port 3699 --open",
  7. "lint": "eslint .",
  8. "typecheck": "vue-tsc --noEmit",
  9. "preview": "vite preview",
  10. "test": "vitest",
  11. "up": "taze major -I",
  12. "postinstall": "npx simple-git-hooks"
  13. },
  14. "dependencies": {
  15. "@element-plus/icons-vue": "^2.3.1",
  16. "@vueuse/core": "^10.9.0",
  17. "axios": "^1.7.2",
  18. "element-plus": "^2.7.5",
  19. "vue": "^3.4.27",
  20. "vue-router": "^4.3.2",
  21. "vue-virtual-scroller": "2.0.0-beta.8"
  22. },
  23. "devDependencies": {
  24. "@antfu/eslint-config": "^2.18.1",
  25. "@iconify-json/carbon": "^1.1.33",
  26. "@types/node": "^20.12.12",
  27. "@unocss/eslint-config": "^0.60.2",
  28. "@unocss/eslint-plugin": "^0.60.2",
  29. "@unocss/reset": "^0.60.2",
  30. "@vitejs/plugin-vue": "^5.0.4",
  31. "@vue-macros/volar": "^0.19.1",
  32. "@vue/test-utils": "^2.4.6",
  33. "eslint": "^9.3.0",
  34. "eslint-plugin-format": "^0.1.1",
  35. "jsdom": "^24.0.0",
  36. "lint-staged": "^15.2.2",
  37. "pnpm": "^9.1.1",
  38. "simple-git-hooks": "^2.11.1",
  39. "taze": "^0.13.8",
  40. "typescript": "^5.4.5",
  41. "unocss": "^0.60.2",
  42. "unplugin-auto-import": "^0.17.6",
  43. "unplugin-vue-components": "^0.27.0",
  44. "unplugin-vue-macros": "^2.9.2",
  45. "unplugin-vue-router": "^0.8.6",
  46. "vite": "^5.2.11",
  47. "vitest": "^1.6.0",
  48. "vue-tsc": "^2.0.19"
  49. },
  50. "simple-git-hooks": {
  51. "pre-commit": "pnpm lint-staged"
  52. },
  53. "lint-staged": {
  54. "*": "eslint --fix"
  55. }
  56. }