package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. "@element-plus/icons-vue": "^2.1.0",
  16. "@vueuse/core": "^10.1.2",
  17. "axios": "^1.4.0",
  18. "pinia": "^2.1.1",
  19. "pinia-plugin-persistedstate": "^3.1.0",
  20. "sass": "^1.62.1",
  21. "vant": "^4.4.1",
  22. "vue": "^3.3.2",
  23. "vue-router": "^4.2.0"
  24. },
  25. "devDependencies": {
  26. "@antfu/eslint-config": "^0.38.6",
  27. "@iconify-json/carbon": "^1.1.16",
  28. "@types/file-saver": "^2.0.5",
  29. "@types/node": "^18.16.11",
  30. "@vitejs/plugin-vue": "^4.2.3",
  31. "@vue-macros/volar": "^0.9.8",
  32. "@vue/test-utils": "^2.3.2",
  33. "eslint": "8.39.0",
  34. "jsdom": "^22.0.0",
  35. "lint-staged": "^13.2.2",
  36. "pnpm": "^8.5.1",
  37. "simple-git-hooks": "^2.8.1",
  38. "taze": "^0.10.1",
  39. "typescript": "^5.0.4",
  40. "unplugin-auto-import": "^0.16.0",
  41. "unplugin-vue-components": "^0.24.1",
  42. "unplugin-vue-macros": "^2.1.7",
  43. "vite": "^4.3.7",
  44. "vite-plugin-pages": "^0.29.0",
  45. "vite-plugin-windicss": "^1.9.0",
  46. "vitest": "^0.31.0",
  47. "vue-tsc": "^1.6.5",
  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": [
  58. "@antfu"
  59. ]
  60. }
  61. }