-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.49 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.49 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
{
"name": "demo-ts",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"db:push": "drizzle-kit push --config src/db/drizzle.config.ts",
"db:generate": "drizzle-kit generate --config src/db/drizzle.config.ts",
"db:reset": "drizzle-kit reset --config src/db/drizzle.config.ts",
"db:studio": "drizzle-kit studio --config src/db/drizzle.config.ts",
"db:seed": "tsx --env-file=.env src/db/seed.ts",
"auth:generate": "npx @better-auth/cli generate --config src/lib/auth.ts"
},
"license": "ISC",
"packageManager": "pnpm@10.13.1",
"dependencies": {
"@aws-sdk/client-s3": "^3.856.0",
"@aws-sdk/s3-request-presigner": "^3.850.0",
"@neondatabase/serverless": "^1.0.1",
"@orpc/client": "^1.7.4",
"@orpc/server": "^1.7.4",
"@orpc/tanstack-query": "^1.7.4",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@t3-oss/env-core": "^0.13.8",
"@tanstack/react-form": "^1.15.0",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-devtools": "^5.83.0",
"@tanstack/react-router": "^1.129.8",
"@tanstack/react-router-devtools": "^1.129.8",
"@tanstack/react-router-with-query": "^1.129.8",
"@tanstack/react-start": "^1.129.8",
"better-auth": "^1.3.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.44.3",
"lucide-react": "^0.534.0",
"motion": "^12.23.11",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.0.14"
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@tailwindcss/vite": "^4.1.11",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.7.0",
"babel-plugin-react-compiler": "19.1.0-rc.2",
"drizzle-kit": "^0.31.4",
"drizzle-seed": "^0.3.1",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.6",
"typescript": "5.9.0-dev.20250729",
"vite": "^7.0.6",
"vite-tsconfig-paths": "^5.1.4"
}
}