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
|
{
"name": "app",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "bunx --bun waku dev --port 3030",
"build": "bunx --bun waku build",
"start": "bunx --bun waku start"
},
"dependencies": {
"@google/genai": "^1.9.0",
"openai": "^5.9.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-server-dom-webpack": "19.1.0",
"waku": "0.23.3"
},
"devDependencies": {
"@types/bun": "latest",
"@tailwindcss/postcss": "4.1.10",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"postcss": "8.5.6",
"tailwindcss": "4.1.10",
"typescript": "5.8.3"
}
}
|