-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.81 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.81 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
{
"name": "start-better-auth",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build && tsc --noEmit",
"start": "vite start",
"db:start": "docker compose up -d",
"db:stop": "docker compose down",
"db:push": "drizzle-kit push --config=drizzle.config.ts",
"db:migrate": "tsx ./src/db/migrate.ts",
"db:clear": "tsx ./src/db/clear.ts",
"db:reset": "tsx ./src/db/clear.ts && tsx ./src/db/migrate.ts",
"db:generate": "drizzle-kit generate --config=drizzle.config.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@tailwindcss/postcss": "^4.1.11",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-router": "^1.125.6",
"@tanstack/react-router-devtools": "^1.125.6",
"@tanstack/react-router-with-query": "^1.125.6",
"@tanstack/react-start": "^1.125.6",
"better-auth": "^1.2.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.0",
"drizzle-orm": "^0.44.3",
"lucide-react": "^0.525.0",
"node-mailjet": "^6.0.8",
"pg": "^8.14.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.60.0",
"sonner": "^2.0.6",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.0.5"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@types/pg": "^8.11.11",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.30.6",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
}
}