-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 881 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 881 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
27
28
29
30
31
32
33
34
{
"name": "fee-payer-example",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"check:types": "tsc -b --noEmit",
"dev": "vp dev",
"gen:types": "wrangler types",
"postinstall": "[ -f .env ] || cp .env.example .env && wrangler types",
"build": "tsc -b && vp build",
"preview": "vp preview"
},
"dependencies": {
"@tanstack/react-query": "latest",
"accounts": "latest",
"hono": "^4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"viem": "latest",
"wagmi": "latest"
},
"devDependencies": {
"@cloudflare/vite-plugin": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitejs/plugin-react": "latest",
"typescript": "~5.9.3",
"vite-plugin-cloudflare-tunnel": "^1.0.12",
"vite-plus": "latest",
"wrangler": "^4.82.2"
}
}