-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 877 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 877 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
{
"name": "meteria402",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run build:frontend && wrangler dev",
"deploy": "npm run build:frontend && wrangler deploy",
"build": "npm run build:frontend && npm run typecheck",
"build:frontend": "vite build",
"mock:facilitator": "node scripts/mock-facilitator.mjs",
"typecheck": "tsc --noEmit",
"db:migrate:local": "wrangler d1 migrations apply meteria402 --local",
"db:migrate:remote": "wrangler d1 migrations apply meteria402 --remote"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260426.1",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "^5.9.3",
"vite": "^8.0.10",
"wrangler": "^4.85.0"
},
"dependencies": {
"qrcode": "^1.5.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"viem": "^2.48.8"
}
}