-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.3 KB
/
package.json
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
{
"name": "trpc-astro-cloudflare",
"type": "module",
"version": "0.0.1",
"scripts": {
"start": "astro dev",
"prebuild": "vite-node ./scripts/buildTrpcPanel.ts",
"build": "astro build",
"astro": "astro",
"dev": "nodemon --exec 'astro build && wrangler pages dev dist --persist --d1=trpc-astro-cloudflare-template' --watch 'src' -e ts,tsx,astro",
"deploy": "astro build && wrangler pages publish dist",
"tail": "wrangler pages deployment tail --project-name='trpc-astro-cloudflare'",
"migration": "npx drizzle-kit generate:sqlite"
},
"dependencies": {
"@astrojs/cloudflare": "^6.2.1",
"@astrojs/react": "^2.1.1",
"@trpc/client": "^10.16.0",
"@trpc/server": "^10.16.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"astro": "^2.0.18",
"cors": "^2.8.5",
"drizzle-orm": "^0.23.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"trpc-panel": "^1.2.9",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230321.0",
"@types/cors": "^2.8.13",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.1",
"better-sqlite3": "8.0.1",
"drizzle-kit": "^0.17.4",
"nodemon": "^2.0.22",
"typescript": "^5.0.4",
"vite-node": "^0.29.8",
"wrangler": "^2.13.0"
}
}