-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 908 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": "rsbuild-react-ssr",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "rsbuild build",
"dev": "node server/development.js",
"format": "biome format --write",
"lint": "biome lint --write",
"preview": "bun run server/production.ts",
"build:compile": "rsbuild build && bun build server/production.ts --target bun --production --minify --server-components --outfile dist/compile/main.js",
"clean": "rimraf dist"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@rsbuild/core": "^1.3",
"@rsbuild/plugin-react": "^1.3",
"@types/bun": "latest",
"@types/express": "^5",
"@types/node": "^22",
"@types/react": "^19.1",
"@types/react-dom": "^19.1",
"express": "^5",
"rimraf": "latest",
"typescript": "^5.8.3"
}
}