package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "private": true,
  3. "packageManager": "pnpm@8.1.0",
  4. "scripts": {
  5. "build": "vite build",
  6. "dev": "vite --port 3500 --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": "^9.13.0",
  16. "element-plus": "^2.3.2",
  17. "vue": "^3.2.47",
  18. "vue-router": "^4.1.6"
  19. },
  20. "devDependencies": {
  21. "@antfu/eslint-config": "^0.38.2",
  22. "@iconify-json/carbon": "^1.1.16",
  23. "@types/node": "^18.15.11",
  24. "@unocss/reset": "^0.50.6",
  25. "@vitejs/plugin-vue": "^4.1.0",
  26. "@vue-macros/volar": "^0.9.4",
  27. "@vue/test-utils": "^2.3.2",
  28. "eslint": "^8.37.0",
  29. "jsdom": "^21.1.1",
  30. "lint-staged": "^13.2.0",
  31. "pnpm": "^8.1.0",
  32. "simple-git-hooks": "^2.8.1",
  33. "taze": "^0.9.1",
  34. "typescript": "^5.0.2",
  35. "unocss": "^0.50.6",
  36. "unplugin-auto-import": "^0.15.2",
  37. "unplugin-vue-components": "^0.24.1",
  38. "unplugin-vue-macros": "^1.11.2",
  39. "vite": "^4.2.1",
  40. "vite-plugin-pages": "^0.29.0",
  41. "vitest": "^0.29.8",
  42. "vue-tsc": "^1.2.0"
  43. },
  44. "simple-git-hooks": {
  45. "pre-commit": "pnpm lint-staged"
  46. },
  47. "lint-staged": {
  48. "*": "eslint --fix"
  49. },
  50. "eslintConfig": {
  51. "extends": "@antfu"
  52. }
  53. }