-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 KB
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
44
45
46
47
48
{
"name": "programmatic-navigation",
"version": "1.0.0",
"description": "A bare-bones RedwoodSDK starter",
"main": "index.js",
"type": "module",
"keywords": [],
"author": "",
"license": "MIT",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite dev",
"dev:init": "rw-scripts dev-init",
"preview": "vite preview",
"worker:run": "rw-scripts worker-run",
"clean": "npm run clean:vite",
"clean:vite": "rm -rf ./node_modules/.vite",
"release": "rw-scripts ensure-deploy-env && npm run clean && npm run build && RWSDK_DEPLOY=1 wrangler deploy",
"generate": "rw-scripts ensure-env && wrangler types",
"check": "npm run generate && npm run types",
"types": "tsc"
},
"dependencies": {
"rwsdk": "workspace:*",
"react": "19.3.0-canary-4fdf7cf2-20251003",
"react-dom": "19.3.0-canary-4fdf7cf2-20251003",
"react-server-dom-webpack": "19.3.0-canary-4fdf7cf2-20251003"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.13.10",
"@cloudflare/workers-types": "4.20251004.0",
"@types/node": "22.18.8",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"typescript": "5.9.3",
"vite": "7.1.9",
"vitest": "^3.1.1",
"wrangler": "4.42.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
}
}