-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 900 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 900 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
{
"private": true,
"name": "rsbuild-plugin-rsc-e2e",
"type": "module",
"version": "1.0.0",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules playwright test",
"test-dev": "cross-env TEST_MODE=dev pnpm test development integration",
"test-build": "cross-env TEST_MODE=build pnpm test integration",
"test:headed": "cross-env NODE_OPTIONS=--experimental-vm-modules playwright test --headed",
"test:all": "pnpm run test-dev && pnpm run test-build"
},
"devDependencies": {
"@e2e/helper": "workspace:*",
"@rsbuild/core": "^2.0.0-rc.2",
"@rsbuild/plugin-react": "^1.4.6",
"@types/express": "^5.0.6",
"@types/webpack-env": "^1.18.8",
"cross-env": "^10.1.0",
"express": "^5.2.1",
"rsbuild-plugin-rsc": "workspace:*",
"srvx": "^0.11.15"
},
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}