-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 789 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 789 Bytes
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
{
"name": "tanstack-do-db-chat-example",
"private": true,
"type": "module",
"scripts": {
"build:client": "esbuild src/client.tsx --bundle --outfile=public/client.js --format=esm --jsx=automatic",
"watch:client": "esbuild src/client.tsx --bundle --outfile=public/client.js --format=esm --jsx=automatic --watch",
"dev": "npm run build:client && wrangler dev"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0",
"@tanstack/db": "0.6.5",
"@tanstack/react-db": "0.1.83",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ulid": "^2.3.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260518.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"esbuild": "^0.24.0",
"typescript": "^5.7",
"wrangler": "^4"
}
}