-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "benefits-navigator-agent",
"version": "1.0.0",
"description": "AI agent workspace that helps social workers navigate public benefits, document requirements, safety escalations, and auditable resident handoffs.",
"type": "module",
"license": "MIT",
"author": "lixian",
"scripts": {
"dev": "concurrently \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "node --watch server/index.js",
"dev:client": "vite --host 0.0.0.0",
"test": "node --test test/*.test.js && npm run eval",
"eval": "node eval/scenarios.test.js",
"build": "vite build",
"start": "node server/index.js",
"health": "node scripts/project-health.js",
"ops:check": "node scripts/ops-check.js",
"ci:local": "npm run health && npm run ops:check && npm test && npm run build"
},
"keywords": [
"ai-agent",
"civic-tech",
"public-benefits",
"social-work",
"guardrails",
"rag",
"react",
"express"
],
"dependencies": {
"@emnapi/core": "^1.11.2",
"@emnapi/runtime": "^1.11.2",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^10.0.3",
"cors": "^2.8.5",
"express": "^5.2.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"vite": "^8.1.3"
},
"engines": {
"node": ">=20"
}
}