-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.61 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
{
"name": "better-auth-next-app-starter",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"db:start": "docker compose up -d",
"db:stop": "docker compose down",
"db:delete": "docker compose down -v",
"db:generate": "drizzle-kit generate",
"auth:generate": "pnpm dlx @better-auth/cli@latest generate --output ./database/schema/auth.ts",
"db:migrate": "drizzle-kit migrate",
"db:migrate-production": "NODE_ENV=production drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"lint": "next lint",
"lint:fix": "next lint --fix"
},
"dependencies": {
"@daveyplate/better-auth-tanstack": "^1.3.4",
"@daveyplate/better-auth-ui": "^1.5.6",
"@neondatabase/serverless": "^1.0.0",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-toast": "^1.2.6",
"@tanstack/react-query": "^5.69.0",
"better-auth": "1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.41.0",
"drizzle-zod": "^0.7.0",
"framer-motion": "^12.9.4",
"lucide-react": "^0.484.0",
"nanoid": "^5.1.5",
"next": "15.3.0-canary.23",
"pg": "^8.14.1",
"postgres": "^3.4.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sonner": "^2.0.1",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"ws": "^8.18.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@better-auth/cli": "^1.2.5",
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.0.15",
"@types/node": "^22.13.11",
"@types/pg": "^8.11.11",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/ws": "^8.18.0",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.5",
"esbuild": "^0.25.1",
"eslint": "^9.23.0",
"eslint-config-next": "^15.2.4",
"tailwindcss": "^4.0.15",
"tailwindcss-safe-area": "^0.6.0",
"turbo": "^2.4.4",
"typescript": "^5.8.2"
},
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"prismjs@<1.30.0": ">=1.30.0"
}
},
"packageManager": "pnpm@10.6.5"
}