-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"name": "typegres-chat-example",
"private": true,
"type": "module",
"scripts": {
"postinstall": "wrangler types",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "vite build && wrangler deploy",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run test",
"reset:local": "rm -rf .wrangler && echo 'local DO storage cleared — next dev/test re-runs migrations'"
},
"dependencies": {
"react": "^19.2.7",
"react-dom": "^19.2.7",
"typegres": "file:../..",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.45.1",
"@cloudflare/vitest-pool-workers": "^0.18.6",
"@swc/core": "^1.15.43",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^24.0.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.1.0",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.3",
"unplugin-swc": "^1.5.9",
"vite": "^8.1.5",
"vitest": "^4.1.10",
"wrangler": "^4.112.0"
}
}