-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 3.08 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
{
"name": "cerebro-web",
"version": "0.1.0",
"private": true,
"packageManager": "npm@10.9.3",
"scripts": {
"dev": "next dev",
"dev:local:cerebro": "CEREBRO_API_BASE=http://127.0.0.1:8080 NEXT_PUBLIC_CEREBRO_API_BASE=http://127.0.0.1:8080 CEREBRO_FORWARD_AUTH_HEADERS=true CEREBRO_PROXY_CACHE_TTL_MS=0 next dev --hostname 127.0.0.1",
"dev:fixtures": "CEREBRO_WEB_FIXTURE_MODE=1 CEREBRO_API_BASE=fixture://local NEXT_PUBLIC_CEREBRO_API_BASE=fixture://local CEREBRO_IDENTITY_PROFILE=local CEREBRO_IDENTITY_REQUIRED=false CEREBRO_LOCAL_IDENTITY_FALLBACK=1 CEREBRO_PROXY_CACHE_TTL_MS=0 next dev --hostname 127.0.0.1",
"build": "next build",
"postbuild": "node scripts/prepare-standalone.mjs",
"start": "node .next/standalone/server.js",
"doctor": "node scripts/doctor.mjs",
"lint": "eslint",
"test": "vitest run",
"smoke:standalone": "node scripts/smoke-standalone.mjs",
"smoke:deploy": "node scripts/smoke-deployment.mjs",
"smoke:docker": "node scripts/smoke-docker.mjs",
"sync:check": "node scripts/check-repo-sync.mjs",
"verify:fast": "npm run lint && npm test",
"verify:build": "npm run build && npm run smoke:standalone -- --skip-build",
"verify:docker": "docker build -t cerebro-web:verify . && npm run smoke:docker -- cerebro-web:verify",
"verify:e2e": "npm run e2e:grc:local -- --browser",
"verify:devex": "npm run doctor -- --ci && npm run verify:fast && npm run verify:build",
"benchmark:grc-scale": "node scripts/grc-scale-benchmark.mjs",
"eval:ask:local": "node scripts/eval-ask-local.mjs",
"eval:ask:adversarial": "node scripts/eval-ask-adversarial.mjs",
"eval:ask:candidates": "node scripts/generate-ask-eval-candidates.mjs",
"eval:ask:harvest-live-goldens": "node scripts/harvest-ask-live-goldens.mjs",
"eval:ask:live-goldens": "CEREBRO_ASK_EVAL_FIXTURE=scripts/fixtures/ask-live-golden-scenarios.json node scripts/eval-ask-local.mjs",
"eval:security-agent:local": "node scripts/eval-security-agent-local.mjs",
"oss:audit": "python3 scripts/oss_audit.py",
"leak:staged": "bash scripts/leak_check.sh staged",
"audit:high": "npm audit --audit-level=high",
"e2e:grc:local": "node scripts/local-grc-e2e.mjs"
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.1075.0",
"@openai/agents": "^0.12.0",
"@tanstack/react-form": "^1.33.0",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.14.5",
"cytoscape": "^3.34.0",
"lucide-react": "^1.22.0",
"next": "16.2.9",
"nuqs": "^2.9.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"recharts": "^3.9.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^26",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^10",
"eslint-config-next": "16.2.9",
"jsdom": "^29.1.1",
"tailwindcss": "^4",
"typescript": "^6",
"vitest": "^4.1.9"
},
"overrides": {
"postcss": "8.5.15"
}
}