-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 KB
/
package.json
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
{
"name": "next-starter",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbo",
"lint": "biome check ./src",
"lint:fix": "biome check --write ./src",
"typecheck": "tsc --noEmit",
"build": "next build",
"start": "next start",
"preview": "next build && next start"
},
"dependencies": {
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@tanstack/react-query": "^5.62.7",
"@trpc/client": "^11.0.0-rc.446",
"@trpc/react-query": "^11.0.0-rc.446",
"@trpc/server": "^11.0.0-rc.446",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lefthook": "^1.9.3",
"lucide-react": "^0.471.1",
"next": "^15.1.0",
"next-intl": "^3.26.1",
"next-themes": "^0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"server-only": "^0.0.1",
"superjson": "^2.2.2",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.0",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.3",
"typescript": "^5.5.3"
}
}