-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.94 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "redwoodsdk-v1-demo",
"version": "1.0.0",
"description": "Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime. ",
"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 && prisma generate && RWSDK_DEPLOY=1 npm run build && wrangler deploy",
"migrate:dev": "prisma generate && wrangler d1 migrations apply DB --local",
"migrate:prd": "wrangler d1 migrations apply DB --remote",
"migrate:new": "rw-scripts migrate-new",
"seed": "npm run worker:run ./src/scripts/seed.ts",
"generate": "rw-scripts ensure-env && prisma generate && wrangler types",
"check": "npm run generate && npm run types",
"types": "tsc",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"prepare": "vibe-rules install cursor"
},
"dependencies": {
"@prisma/adapter-d1": "~6.8.2",
"@prisma/client": "~6.8.2",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/vite": "^4.1.10",
"clsx": "^2.1.1",
"eslint": "9.34.0",
"lucide-react": "^0.543.0",
"react": "0.0.0-experimental-d415fd3e-20250919",
"react-dom": "0.0.0-experimental-d415fd3e-20250919",
"react-error-boundary": "^6.0.0",
"react-server-dom-webpack": "19.0.0-rc.1",
"rwsdk": "1.0.0-beta.9-test.20251007155132",
"server-only": "^0.0.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.12",
"zod": "^4.1.5"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.13.7",
"@cloudflare/workers-types": "4.20250927.0",
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@types/node": "~24.5.2",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitejs/plugin-react": "^5.0.3",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"eslint-config-next": "15.5.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-autofix": "^2.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^6.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"prisma": "~6.8.2",
"typescript": "5.8.3",
"vibe-rules": "^0.2.31",
"vite": "7.1.6",
"wrangler": "4.40.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"esbuild",
"prisma",
"sharp",
"workerd"
]
}
}