package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "private": true,
  3. "packageManager": "pnpm@8.6.0",
  4. "scripts": {
  5. "build": "vite build",
  6. "dev": "vite --port 3433 --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. "@vueuse/core": "^10.11.1",
  16. "axios": "^1.7.9",
  17. "element-plus": "^2.9.1",
  18. "vue": "^3.5.13",
  19. "vue-router": "^4.5.0"
  20. },
  21. "devDependencies": {
  22. "@antfu/eslint-config": "^0.39.8",
  23. "@iconify-json/carbon": "^1.2.5",
  24. "@iconify/json": "^2.2.288",
  25. "@types/node": "^20.17.10",
  26. "@unocss/eslint-config": "^0.53.6",
  27. "@unocss/reset": "^0.53.6",
  28. "@vitejs/plugin-vue": "^4.6.2",
  29. "@vue-macros/volar": "^0.10.2",
  30. "@vue/test-utils": "^2.4.6",
  31. "eslint": "^8.57.1",
  32. "jsdom": "^22.1.0",
  33. "lint-staged": "^13.3.0",
  34. "pnpm": "^8.15.9",
  35. "sass": "^1.83.0",
  36. "simple-git-hooks": "^2.11.1",
  37. "taze": "^0.10.3",
  38. "typescript": "^5.7.2",
  39. "unocss": "^0.53.6",
  40. "unplugin-auto-import": "^0.16.7",
  41. "unplugin-icons": "^0.17.4",
  42. "unplugin-vue-components": "^0.25.2",
  43. "unplugin-vue-macros": "^2.13.6",
  44. "vite": "^4.5.5",
  45. "vite-plugin-pages": "^0.31.0",
  46. "vitest": "^0.31.4",
  47. "vue-tsc": "^1.8.27"
  48. },
  49. "simple-git-hooks": {
  50. "pre-commit": "pnpm lint-staged"
  51. },
  52. "lint-staged": {
  53. "*": ""
  54. },
  55. "eslintConfig": {
  56. "extends": [
  57. "@antfu",
  58. "@unocss"
  59. ]
  60. }
  61. }