-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) 路 2.04 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) 路 2.04 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
{
"name": "@benchmarks/memory-client",
"private": true,
"type": "module",
"dependencies": {
"@tanstack/react-router": "workspace:^",
"@tanstack/router-core": "workspace:^",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@codspeed/vitest-plugin": "^5.5.0",
"@testing-library/react": "^16.2.0",
"@vitejs/plugin-react": "^6.0.1",
"@types/jsdom": "28.0.0",
"typescript": "^6.0.2",
"vite": "^8.0.14",
"vitest": "^4.1.4"
},
"nx": {
"targets": {
"build:react": {
"executor": "nx:noop",
"cache": false,
"dependsOn": [
{
"projects": [
"@benchmarks/memory-client-navigation-churn-react",
"@benchmarks/memory-client-unique-location-churn-react",
"@benchmarks/memory-client-preload-churn-react",
"@benchmarks/memory-client-loader-data-retention-react",
"@benchmarks/memory-client-mount-unmount-react",
"@benchmarks/memory-client-interrupted-navigations-react"
],
"target": "build:client"
}
]
},
"test:perf:react": {
"executor": "nx:run-commands",
"cache": false,
"dependsOn": [
"build:react"
],
"options": {
"command": "NODE_ENV=production vitest bench --config ./vitest.react.config.ts",
"cwd": "benchmarks/memory/client"
}
},
"test:types": {
"executor": "nx:noop",
"dependsOn": [
{
"projects": [
"@benchmarks/memory-client-navigation-churn-react",
"@benchmarks/memory-client-unique-location-churn-react",
"@benchmarks/memory-client-preload-churn-react",
"@benchmarks/memory-client-loader-data-retention-react",
"@benchmarks/memory-client-mount-unmount-react",
"@benchmarks/memory-client-interrupted-navigations-react"
],
"target": "test:types:client"
}
]
}
}
}
}