-
-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathpackage.json.ejs
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json.ejs
File metadata and controls
50 lines (50 loc) · 1.39 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
50
{
"name": "",
"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": {
"lucide-react": "^0.545.0",
"react": "19.2.0-canary-d415fd3e-20250919",
"react-dom": "19.2.0-canary-d415fd3e-20250919",
"react-server-dom-webpack": "19.2.0-canary-d415fd3e-20250919",
"rwsdk": "1.0.0-beta.9"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.13.3",
"@cloudflare/workers-types": "4.20250921.0",
"@tailwindcss/vite": "^4.1.14",
"@types/node": "~24.5.2",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"tailwindcss": "^4.1.14",
"typescript": "6.0.2",
"vite": "7.1.6",
"wrangler": "4.38.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
}
}