@farmzone/fz-template-react 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ npx @farmzone/fz-template-react <프로젝트명>
|
|
|
13
13
|
```bash
|
|
14
14
|
npx @farmzone/fz-template-react my-app
|
|
15
15
|
cd my-app
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
pnpm install
|
|
17
|
+
pnpm dev
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
프로젝트명을 생략하면 대화형으로 입력을 받습니다.
|
|
@@ -54,16 +54,16 @@ my-app/
|
|
|
54
54
|
|
|
55
55
|
## 포함된 기술 스택
|
|
56
56
|
|
|
57
|
-
| 항목
|
|
58
|
-
|
|
59
|
-
| React
|
|
60
|
-
| Vite
|
|
61
|
-
| TypeScript
|
|
62
|
-
| Tailwind CSS
|
|
63
|
-
| React Router
|
|
64
|
-
| TanStack Query
|
|
57
|
+
| 항목 | 버전 |
|
|
58
|
+
| --------------------- | ------ |
|
|
59
|
+
| React | ^19 |
|
|
60
|
+
| Vite | ^7 |
|
|
61
|
+
| TypeScript | ~5.9 |
|
|
62
|
+
| Tailwind CSS | v4 |
|
|
63
|
+
| React Router | ^7 |
|
|
64
|
+
| TanStack Query | ^5 |
|
|
65
65
|
| @farmzone/fz-react-ui | latest |
|
|
66
|
-
| react-hook-form + zod | 최신
|
|
66
|
+
| react-hook-form + zod | 최신 |
|
|
67
67
|
|
|
68
68
|
## 메뉴 추가
|
|
69
69
|
|
|
@@ -74,9 +74,7 @@ import { LayoutDashboard, Users, ScrollText } from "lucide-react";
|
|
|
74
74
|
|
|
75
75
|
export const MENU_SECTIONS: MenuSection[] = [
|
|
76
76
|
{
|
|
77
|
-
items: [
|
|
78
|
-
{ icon: LayoutDashboard, label: "대시보드", path: "/" },
|
|
79
|
-
],
|
|
77
|
+
items: [{ icon: LayoutDashboard, label: "대시보드", path: "/" }],
|
|
80
78
|
},
|
|
81
79
|
{
|
|
82
80
|
title: "관리",
|
package/package.json
CHANGED