-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.17 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
{
"name": "ai-dev-team",
"version": "2.0.0",
"description": "AI-Powered Multi-Agent Development Team",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"server": "node server/index.js",
"dashboard": "cd dashboard && npm run dev",
"dev": "concurrently \"npm run server\" \"npm run dashboard\"",
"test:graph": "node tests/test-graph-skeleton.js",
"test:pm": "node tests/test-pm-agent.js",
"test:architect": "node tests/test-architect.js",
"test:validator": "node tests/test-validator.js",
"test:planner": "node tests/test-planner.js",
"test:sandbox": "node tests/test-sandbox.js",
"test:devloop": "node tests/test-devloop.js",
"test:all:mock": "node tests/test-graph-skeleton.js && node tests/test-validator.js && node tests/test-sandbox.js && node tests/test-devloop.js"
},
"dependencies": {
"@langchain/langgraph": "^1.2.0",
"@langchain/langgraph-checkpoint-redis": "^1.0.1",
"@google/genai": "^1.43.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.0",
"readline": "^1.3.0",
"ws": "^8.18.0"
},
"devDependencies": {
"concurrently": "^9.0.1"
}
}