-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) ยท 1.83 KB
/
package.json
File metadata and controls
64 lines (64 loc) ยท 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "moiming-web",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome lint .",
"check:types": "tsc",
"check:format": "biome check .",
"check:unused": "knip",
"check-all": "yarn check:types && yarn check:format && yarn check:unused",
"fix": "yarn biome check --write ."
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.90.20",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.33.0",
"lucide-react": "^0.562.0",
"motion": "^12.29.2",
"radix-ui": "^1.4.3",
"react": "^19.1.0",
"react-aria-components": "^1.14.0",
"react-day-picker": "^9.13.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.71.1",
"react-intersection-observer": "^10.0.2",
"react-router": "^7.11.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6",
"zustand": "^5.0.9"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tanstack/react-query-devtools": "^5.91.3",
"@types/node": "^22.15.29",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react-swc": "^3.9.0",
"knip": "^5.59.1",
"msw": "^2.12.7",
"shadcn": "^3.6.3",
"tw-animate-css": "^1.4.0",
"typescript": "~5.8.3",
"vite": "^6.3.5"
},
"msw": {
"workerDirectory": ["public"]
}
}