-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.92 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
{
"name": "next-template",
"author": {
"name": "Vitor Felicio",
"email": "desenvolvedorvitor67@gmail.com"
},
"description": "A simple Next.js template for build modern apps and SaaS",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome check --write",
"db:generate": "bunx --bun drizzle-orm generate",
"db:migrate": "bunx --bun drizzle-kit migrate",
"db:studio": "bunx --bun drizzle-kit studio"
},
"dependencies": {
"@base-ui/react": "1.6.0",
"@hookform/resolvers": "5.4.0",
"@libsql/client": "0.17.4",
"@shadcn/react": "0.2.1",
"@t3-oss/env-core": "0.13.11",
"@tabler/icons-react": "3.44.0",
"@tanstack/react-query": "5.101.2",
"@trpc/client": "11.18.0",
"@trpc/server": "11.18.0",
"@trpc/tanstack-react-query": "11.18.0",
"better-auth": "1.6.23",
"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",
"next": "16.2.10",
"next-themes": "0.4.6",
"react": "19.2.4",
"react-day-picker": "10.0.1",
"react-dom": "19.2.4",
"react-hook-form": "7.81.0",
"react-resizable-panels": "4.12.1",
"recharts": "3.8.0",
"shadcn": "4.13.0",
"sonner": "2.0.7",
"tailwind-merge": "3.6.0",
"tw-animate-css": "1.4.0",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@tailwindcss/postcss": "4.3.2",
"@types/node": "26.1.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"babel-plugin-react-compiler": "1.0.0",
"drizzle-kit": "0.31.10",
"tailwindcss": "4.3.2",
"typescript": "6.0.3"
},
"ignoreScripts": ["sharp", "unrs-resolver"],
"trustedDependencies": ["sharp", "unrs-resolver"],
"packageManager": "bun"
}