package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "private": true,
  3. "packageManager": "pnpm@8.5.1",
  4. "scripts": {
  5. "build": "vite build",
  6. "dev": "vite --port 3333 --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.4.0",
  17. "element-plus": "^2.3.4",
  18. "pinia": "^2.1.1",
  19. "pinia-plugin-persistedstate": "^3.1.0",
  20. "sass": "^1.62.1",
  21. "vue": "^3.3.2",
  22. "vue-router": "^4.2.0"
  23. },
  24. "devDependencies": {
  25. "@antfu/eslint-config": "^0.38.6",
  26. "@iconify-json/carbon": "^1.1.16",
  27. "@types/file-saver": "^2.0.5",
  28. "@types/node": "^18.16.11",
  29. "@vitejs/plugin-vue": "^4.2.3",
  30. "@vue-macros/volar": "^0.9.8",
  31. "@vue/test-utils": "^2.3.2",
  32. "eslint": "8.39.0",
  33. "jsdom": "^22.0.0",
  34. "lint-staged": "^13.2.2",
  35. "pnpm": "^8.5.1",
  36. "simple-git-hooks": "^2.8.1",
  37. "taze": "^0.10.1",
  38. "typescript": "^5.0.4",
  39. "unplugin-auto-import": "^0.16.0",
  40. "unplugin-vue-components": "^0.24.1",
  41. "unplugin-vue-macros": "^2.1.7",
  42. "vite": "^4.3.7",
  43. "vite-plugin-pages": "^0.29.0",
  44. "vite-plugin-windicss": "^1.9.0",
  45. "vitest": "^0.31.0",
  46. "vue-tsc": "^1.6.5",
  47. "windicss": "^3.5.6"
  48. },
  49. "simple-git-hooks": {
  50. "pre-commit": "pnpm lint-staged"
  51. },
  52. "lint-staged": {
  53. "*": "eslint --fix"
  54. },
  55. "eslintConfig": {
  56. "extends": [
  57. "@antfu"
  58. ]
  59. }
  60. }