package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. "prepare": "husky install"
  14. },
  15. "dependencies": {
  16. "@vueuse/core": "^9.13.0",
  17. "element-plus": "^2.3.2",
  18. "pinia": "^2.0.34",
  19. "sass": "^1.62.0",
  20. "vue": "^3.2.47",
  21. "vue-router": "^4.1.6"
  22. },
  23. "devDependencies": {
  24. "@antfu/eslint-config": "^0.38.2",
  25. "@iconify-json/carbon": "^1.1.16",
  26. "@types/node": "^18.15.11",
  27. "@unocss/reset": "^0.50.6",
  28. "@vitejs/plugin-vue": "^4.1.0",
  29. "@vue-macros/volar": "^0.9.4",
  30. "@vue/test-utils": "^2.3.2",
  31. "axios": "^1.3.5",
  32. "eslint": "^8.37.0",
  33. "husky": "^8.0.0",
  34. "jsdom": "^21.1.1",
  35. "lint-staged": "^13.2.0",
  36. "pnpm": "^8.1.0",
  37. "simple-git-hooks": "^2.8.1",
  38. "taze": "^0.9.1",
  39. "typescript": "^5.0.2",
  40. "unplugin-auto-import": "^0.15.2",
  41. "unplugin-vue-components": "^0.24.1",
  42. "unplugin-vue-macros": "^1.11.2",
  43. "vite": "^4.2.1",
  44. "vite-plugin-pages": "^0.29.0",
  45. "vite-plugin-windicss": "^1.8.10",
  46. "vitest": "^0.29.8",
  47. "vue-tsc": "^1.2.0",
  48. "windicss": "^3.5.6"
  49. },
  50. "simple-git-hooks": {
  51. "pre-commit": "pnpm lint-staged"
  52. },
  53. "lint-staged": {
  54. "*": "eslint --fix"
  55. },
  56. "eslintConfig": {
  57. "extends": "@antfu"
  58. }
  59. }