-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "@durhack/durhack-client",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"staging": "NODE_ENV=staging next dev -p 3010",
"build": "next build",
"start": "next start",
"check": "biome check .",
"check:fix": "biome check --write .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@durhack/durhack-common": "workspace:*",
"@durhack/web-components": "1.2.0-beta.0",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-aspect-ratio": "^1.1.7",
"@radix-ui/react-icons": "^1.3.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"countries-list": "^3.1.1",
"libphonenumber-js": "^1.12.24",
"module-error": "^1.0.2",
"next": "16.0.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.65.0",
"swr": "^2.3.6",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^24.7.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.14",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
}
}