-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
49
{
"name": "@redwoodjs/starter",
"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 && wrangler deploy",
"generate": "rw-scripts ensure-env && wrangler types --include-runtime false",
"check": "npm run generate && npm run types",
"types": "tsc"
},
"dependencies": {
"react": "19.3.0-canary-d6cae440-20260106",
"react-dom": "19.3.0-canary-d6cae440-20260106",
"react-server-dom-webpack": "19.3.0-canary-d6cae440-20260106",
"rwsdk": "1.0.0-beta.48"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.20.1",
"@cloudflare/workers-types": "4.20260111.0",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "~24.10.0",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"tailwindcss": "^4.1.18",
"typescript": "5.9.3",
"vite": "7.3.1",
"wrangler": "4.58.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
}
}