-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 808 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 808 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
{
"name": "cloudflare-react-starter",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node ./scripts/dev.mjs",
"dev:web": "vite",
"worker": "node ./scripts/worker-dev.mjs",
"build": "vite build",
"preview": "vite preview",
"deploy": "npm run build && wrangler deploy",
"migrate": "node ./scripts/run-migrations.mjs",
"migrate:local": "node ./scripts/run-migrations.mjs --local --persist-to .wrangler/state",
"migrate:remote": "node ./scripts/run-migrations.mjs --remote"
},
"dependencies": {
"lucide-react": "^1.11.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.2"
},
"devDependencies": {
"@vitejs/plugin-react": "^6.0.1",
"vite": "^8.0.10",
"wrangler": "^4.85.0"
}
}