-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.15 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.15 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "windfall",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@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-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@stomp/stompjs": "^7.2.1",
"@tanstack/react-query": "^5.90.12",
"@tosspayments/tosspayments-sdk": "^2.5.0",
"@types/react-big-calendar": "^1.16.3",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"comlink": "^4.4.2",
"dayjs": "^1.11.19",
"embla-carousel-react": "^8.6.0",
"lucide-react": "^0.556.0",
"motion": "^12.25.0",
"nanoid": "^5.1.6",
"next": "16.0.8",
"next-themes": "^0.4.6",
"react": "19.2.1",
"react-big-calendar": "^1.19.4",
"react-day-picker": "^9.12.0",
"react-dom": "19.2.1",
"react-hook-form": "^7.54.2",
"react-intersection-observer": "^10.0.0",
"react-lottie-player": "^2.1.0",
"recharts": "2.15.4",
"sockjs-client": "^1.6.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zod": "^4.1.13",
"zustand": "^5.0.9"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.1",
"@next/eslint-plugin-next": "^16.0.8",
"@stylistic/eslint-plugin": "^3.1.0",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sockjs-client": "^1.5.4",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-airbnb-extended": "^2.3.3",
"eslint-config-next": "16.0.8",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"typescript-eslint": "^8.49.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.15"
}
}