-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 4.24 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 4.24 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
73
74
75
76
77
78
79
80
81
{
"name": "signalgrid",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:demo": "vitest run tests/demo",
"test:api:unit": "vitest run tests/api --exclude tests/api/integration-v1.test.ts --exclude tests/api/integrations-itsm.test.ts --exclude tests/api/integrations-webhooks.test.ts --exclude tests/api/location-report.test.ts --exclude tests/api/policies.test.ts --exclude tests/api/webauthn-admin.test.ts",
"test:api:server": "bun run scripts/test-api-server.ts",
"test:api:server:only": "vitest run --config vitest.server.config.ts tests/api/integration-v1.test.ts tests/api/integrations-itsm.test.ts tests/api/integrations-webhooks.test.ts tests/api/location-report.test.ts tests/api/policies.test.ts tests/api/webauthn-admin.test.ts tests/demo/healthcare-flow.test.ts tests/demo/logistics-flow.test.ts tests/demo/retail-flow.test.ts tests/security/rate-limit.test.ts tests/security/replay-attack.test.ts tests/security/secret-redaction.test.ts tests/security/stepup-enforcement.test.ts tests/security/webhook-signing.test.ts",
"test:api:server:local": "bun run test:api:server",
"test:api": "bun run test:api:unit",
"test:api:all": "vitest run tests/api",
"test:e2e": "playwright test",
"test:security": "vitest run tests/security",
"test:semgrep": "semgrep --config=auto tests src scripts --json --output=semgrep-report.json",
"test:load": "k6 run tests/load/*.js --json --output-json=load-report.json",
"test:summary": "bun run scripts/summarize-failures.ts",
"demo:validate": "bun run scripts/demo-validate.ts",
"test:ci": "bun run typecheck && bun run lint && bun run build && bun run test:run",
"test:server:start": "bun run scripts/test-server.ts start",
"test:server:stop": "bun run scripts/test-server.ts stop",
"test:server:wait": "bun run scripts/test-server.ts wait",
"test:run:local": "bun run test:server:start && bun run test:run && bun run test:server:stop",
"test:demo:local": "bun run test:server:start && bun run test:demo && bun run test:server:stop",
"test:security:local": "bun run test:server:start && bun run test:security && bun run test:server:stop",
"test:replay": "bun run scripts/replay-test.ts",
"sim:badge": "bun run scripts/sim-badge.ts",
"sim:location": "bun run scripts/sim-location.ts",
"test:audit": "bun run scripts/audit-verify.ts",
"audit:verify": "bun run scripts/audit-verify.ts",
"test:webhooks": "bun run scripts/webhook-test.ts",
"seed:policies": "bun run scripts/seed-policies.ts",
"sim:posture": "bun run scripts/sim-posture.ts",
"test:webauthn": "bun run scripts/webauthn-smoke.ts",
"test:fleetdm": "bun run scripts/fleetdm-smoke.ts",
"seed:itsm": "bun run scripts/seed-itsm-templates.ts",
"demo:flow": "bun run scripts/demo-flow.ts",
"demo:exec": "bun run scripts/demo-executive.ts",
"demo:up": "bun run scripts/demo-control.ts up",
"demo:down": "bun run scripts/demo-control.ts down",
"demo:reset": "bun run scripts/demo-control.ts reset",
"demo:doctor": "bun run scripts/demo-control.ts doctor",
"demo:report": "bun run scripts/demo-control.ts report",
"test:redaction": "bun test scripts/test-secret-redaction.ts",
"demo:seed": "bun run scripts/demo-seed.ts",
"demo:media": "bun run scripts/capture-demo-media.ts",
"demo:screenshots": "bun run scripts/capture-demo-media.ts --mode=screenshots",
"demo:video": "bun run scripts/capture-demo-media.ts --mode=video",
"rc:smoke": "bun run scripts/rc-smoke.ts"
},
"dependencies": {
"ioredis": "^5.10.0",
"jose": "^6.1.3",
"next": "^15.5.14",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"uuid": "^13.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@tailwindcss/postcss": "^4.1.17",
"@types/ioredis": "^5.0.0",
"@types/node": "^24.10.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"eslint": "^9.39.1",
"eslint-config-next": "^16.2.1",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vitest": "^2.1.8"
}
}