-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.13 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
{
"name": "next-tmpl",
"type": "module",
"version": "0.0.1",
"scripts": {
"build": "NODE_OPTIONS=--max-old-space-size=1236 next build",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"dev": "next dev --turbopack",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "simple-git-hooks",
"start": "next start"
},
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@libsql/client": "^0.17.4",
"@react-email/components": "^1.0.12",
"@shined/react-use": "^1.14.0",
"@t3-oss/env-nextjs": "^0.13.11",
"@types/ua-parser-js": "^0.7.39",
"better-auth": "^1.6.22",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"drizzle-orm": "^0.45.2",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"lucide-react": "^1.22.0",
"motion": "^12.42.0",
"next": "16.2.9",
"next-themes": "^0.4.6",
"nuqs": "^2.8.9",
"prettier": "^3.9.1",
"radix-ui": "latest",
"react": "^19.2.7",
"react-day-picker": "^10.0.1",
"react-dom": "^19.2.7",
"react-dropzone": "^15.0.0",
"react-hook-form": "^7.80.0",
"react-image-crop": "^11.1.2",
"react-resizable-panels": "^4.12.0",
"recharts": "^3.9.0",
"resend": "^6.16.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"ua-parser-js": "^2.0.10",
"vaul": "^1.1.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.23",
"@iconify-json/tabler": "^1.2.35",
"@iconify/tailwind4": "^1.2.3",
"@tailwindcss/postcss": "^4.3.1",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"drizzle-kit": "^0.31.10",
"eslint": "^10.6.0",
"eslint-config-hyoban": "^7.0.3",
"lint-staged": "^17.0.8",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}