-
-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 920 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 920 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
{
"name": "@vitejs/plugin-rsc-examples-react-router",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"cf-dev": "vite -c ./cf/vite.config.ts",
"cf-build": "vite -c ./cf/vite.config.ts build",
"cf-preview": "vite -c ./cf/vite.config.ts preview",
"cf-release": "wrangler deploy -c dist/rsc/wrangler.json && wrangler deploy"
},
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "7.13.1"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.28.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "latest",
"@vitejs/plugin-rsc": "latest",
"tailwindcss": "^4.2.1",
"vite": "^8.0.0",
"wrangler": "^4.73.0"
}
}