-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 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
{
"name": "dev-roast",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check .",
"format": "biome format --write .",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/db/seed.ts"
},
"dependencies": {
"@ai-sdk/google": "^3.0.52",
"@ai-sdk/openai": "^3.0.47",
"@base-ui/react": "^1.3.0",
"@number-flow/react": "^0.6.0",
"@takumi-rs/image-response": "^0.73.1",
"@tanstack/react-query": "^5.90.21",
"@trpc/client": "^11.13.4",
"@trpc/server": "^11.13.4",
"@trpc/tanstack-react-query": "^11.13.4",
"ai": "^6.0.134",
"client-only": "^0.0.1",
"diff": "^8.0.3",
"drizzle-orm": "^0.45.1",
"flourite": "^1.3.0",
"next": "16.1.6",
"pg": "^8.20.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"server-only": "^0.0.1",
"shiki": "^4.0.2",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@faker-js/faker": "^10.3.0",
"@tailwindcss/postcss": "^4",
"@types/diff": "^7.0.2",
"@types/node": "^20",
"@types/pg": "^8.18.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.3.1",
"drizzle-kit": "^0.31.9",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}