-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 2.23 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
{
"name": "stream247",
"private": true,
"version": "2.0.0-rc.6",
"license": "SEE LICENSE IN LICENSE",
"packageManager": "pnpm@10.6.1",
"scripts": {
"dev": "pnpm --filter web dev",
"build": "pnpm --filter core build && pnpm --filter db build && pnpm --filter @stream247/overlay-render build && pnpm --filter worker build && pnpm --filter web build",
"lint": "pnpm --filter web lint",
"typecheck": "pnpm --filter core build && pnpm --filter db build && pnpm --filter @stream247/overlay-render build && pnpm --filter worker build && pnpm --filter web typecheck",
"test": "pnpm test:unit && pnpm test:integration",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "pnpm exec playwright test --config=playwright.config.ts",
"test:e2e:smoke": "bash ./scripts/e2e-smoke.sh",
"test:fresh-db": "bash ./scripts/fresh-db-bootstrap-smoke.sh",
"test:fresh-compose": "bash ./scripts/fresh-compose-bootstrap-smoke.sh",
"test:multi-output-smoke": "vitest run tests/unit/multi-output-routing.test.ts",
"test:live-bridge-smoke": "vitest run tests/unit/live-bridge.test.ts",
"test:audio-cuepoint-smoke": "vitest run tests/unit/audio-lanes.test.ts tests/unit/cuepoints.test.ts",
"test:queue-continuity": "bash ./scripts/queue-continuity-smoke.sh",
"test:runtime-parity": "bash ./scripts/runtime-parity-smoke.sh",
"validate": "pnpm lint && pnpm lint:css-tokens && pnpm typecheck && pnpm test && pnpm build",
"release:preflight": "./scripts/release-preflight.sh",
"release:rehearse": "./scripts/upgrade-rehearsal.sh",
"soak:monitor": "./scripts/soak-monitor.sh",
"lint:css-tokens": "./scripts/css-token-lint.sh",
"test:design-baseline": "docker build -f docker/web.Dockerfile -t stream247-web:test . && ./scripts/design-baseline.sh",
"test:design-baseline:update": "docker build -f docker/web.Dockerfile -t stream247-web:test . && ./scripts/design-baseline.sh --update"
},
"devDependencies": {
"@playwright/test": "1.56.1",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.25.0",
"eslint-config-next": "^15.2.4",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}