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.1.2",
  16. "axios": "^1.5.0",
  17. "element-plus": "^2.3.12",
  18. "vue": "^3.3.4",
  19. "vue-router": "^4.2.2"
  20. },
  21. "devDependencies": {
  22. "@antfu/eslint-config": "^0.39.5",
  23. "@iconify-json/carbon": "^1.1.17",
  24. "@iconify/json": "^2.2.110",
  25. "@types/node": "^20.2.5",
  26. "@unocss/eslint-config": "^0.53.0",
  27. "@unocss/reset": "^0.53.0",
  28. "@vitejs/plugin-vue": "^4.2.3",
  29. "@vue-macros/volar": "^0.10.2",
  30. "@vue/test-utils": "^2.3.2",
  31. "eslint": "^8.42.0",
  32. "jsdom": "^22.1.0",
  33. "lint-staged": "^13.2.2",
  34. "pnpm": "^8.6.0",
  35. "sass": "^1.66.1",
  36. "simple-git-hooks": "^2.8.1",
  37. "taze": "^0.10.2",
  38. "typescript": "^5.1.3",
  39. "unocss": "^0.53.0",
  40. "unplugin-auto-import": "^0.16.4",
  41. "unplugin-icons": "^0.17.0",
  42. "unplugin-vue-components": "^0.25.0",
  43. "unplugin-vue-macros": "^2.2.1",
  44. "vite": "^4.3.9",
  45. "vite-plugin-pages": "^0.31.0",
  46. "vitest": "^0.31.4",
  47. "vue-tsc": "^1.6.5"
  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. }