package.json 1.5 KB

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