-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.14 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
{
"name": "tanstack-react-start-e2e-css-inline",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "pnpm build:vite && pnpm build:rsbuild",
"build:vite": "vite build && tsc --noEmit",
"build:rsbuild": "rsbuild build && tsc --noEmit",
"start": "node server.js",
"test:e2e:vite": "E2E_TOOLCHAIN=vite playwright test --project=chromium",
"test:e2e:vite:transform-assets": "E2E_TOOLCHAIN=vite CSS_INLINE_TRANSFORM_ASSETS=true playwright test --project=chromium",
"test:e2e:rsbuild": "E2E_TOOLCHAIN=rsbuild playwright test --project=chromium",
"test:e2e:rsbuild:transform-assets": "E2E_TOOLCHAIN=rsbuild CSS_INLINE_TRANSFORM_ASSETS=true playwright test --project=chromium",
"test:e2e": "pnpm run test:e2e:vite && pnpm run test:e2e:vite:transform-assets && pnpm run test:e2e:rsbuild && pnpm run test:e2e:rsbuild:transform-assets"
},
"dependencies": {
"@tanstack/react-router": "workspace:^",
"@tanstack/react-start": "workspace:^",
"express": "^5.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"srvx": "^0.11.9"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@rsbuild/core": "^2.1.0",
"@rsbuild/plugin-react": "^2.0.0",
"@tanstack/router-e2e-utils": "workspace:^",
"@types/node": "^22.10.2",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "^6.0.2",
"vite": "^8.0.14"
},
"nx": {
"targets": {
"test:e2e": {
"parallelism": false
}
},
"metadata": {
"playwrightModes": [
{
"toolchain": "vite",
"mode": "ssr"
},
{
"toolchain": "vite",
"mode": "ssr",
"name": "transform-assets",
"env": {
"CSS_INLINE_TRANSFORM_ASSETS": "true"
}
},
{
"toolchain": "rsbuild",
"mode": "ssr"
},
{
"toolchain": "rsbuild",
"mode": "ssr",
"name": "transform-assets",
"env": {
"CSS_INLINE_TRANSFORM_ASSETS": "true"
}
}
]
}
}
}