-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 2.65 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 2.65 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
{
"name": "re-frame2-tests",
"version": "0.0.0-SNAPSHOT",
"private": true,
"description": "CLJS test target for re-frame2 (node-runtime).",
"devDependencies": {
"@xyflow/react": "12.4.2",
"elkjs": "^0.11.1",
"http-server": "14.1.1",
"playwright": "1.59.1",
"qrcode-generator": "2.0.4",
"react": "19.2.0",
"react-dom": "19.2.0",
"shadow-cljs": "3.4.10",
"todomvc-app-css": "2.4.3",
"todomvc-common": "1.0.5"
},
"scripts": {
"test:cljs": "shadow-cljs compile node-test && node out/node-test.js",
"test:cljs-perf-emit-nightly": "shadow-cljs compile node-test-perf-nightly && node out/node-test-perf-nightly.js",
"test:browser": "shadow-cljs compile browser-test && node scripts/serve-and-run-browser-tests.cjs",
"test:browser-schemas-boundary-prod": "shadow-cljs release browser-test-schemas-boundary-prod && node scripts/serve-and-run-schemas-boundary-prod-tests.cjs",
"test:browser-prod-elision": "shadow-cljs release browser-test-prod-elision && node scripts/serve-and-run-prod-elision-tests.cjs",
"test:elision": "shadow-cljs release elision-probe elision-probe-control && node scripts/check-elision.cjs",
"test:perf-bundle": "shadow-cljs release examples/counter examples/counter-perf && node scripts/check-perf-bundle.cjs",
"test:schemas-bundle": "shadow-cljs release schemas-bundle-probe schemas-bundle-probe-malli && node scripts/check-schemas-bundle.cjs",
"test:bundle-isolation": "shadow-cljs release examples/counter examples/counter-uix examples/counter-helix && node scripts/check-bundle-isolation.cjs && node scripts/check-uix-helix-reagent-free.cjs",
"test:reagent-slim:bundle-isolation": "shadow-cljs release examples/counter examples/counter-slim-and-fast && node scripts/check-reagent-slim-bundle-isolation.cjs",
"test:examples": "node ../examples/scripts/serve-and-run-examples-tests.cjs",
"story:build": "node scripts/story-build.cjs",
"test:story-feature-load": "node ../examples/scripts/serve-and-run-story-feature-load-tests.cjs",
"test:story-play-scripts": "node ../examples/scripts/serve-and-run-story-play-scripts.cjs",
"test:xray-feature-gate": "node scripts/serve-and-run-xray-feature-gate.cjs",
"test:xray-feature-gate:smoke": "node scripts/serve-and-run-xray-feature-gate.cjs --smoke",
"test:story-static": "node scripts/check-story-static.cjs",
"test:script-policy": "node scripts/_path-policy.test.cjs && node scripts/_changed-surfaces.test.cjs && node scripts/_story-feature-load-port.test.cjs",
"test:script-helpers": "node scripts/_browser-test-report.test.cjs && node scripts/_gate-report.test.cjs && node scripts/_local-browser-harness.test.cjs"
}
}