-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 814 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 814 Bytes
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
{
"name": "ecs-agent-orchestrator",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "tsx src/server.ts",
"dev": "tsx watch src/server.ts",
"build": "tsc",
"docker:build": "docker build -t ecs-agent-orchestrator .",
"docker:run": "docker run -p 3000:3000 ecs-agent-orchestrator",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"express": "^4.18.2",
"@ai-platform-aws/sdk": "^1.0.0",
"@ai-platform-aws/agents": "^1.0.0",
"@aws-sdk/client-lambda": "^3.478.0",
"dotenv": "^16.4.0",
"cors": "^2.8.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/uuid": "^9.0.0",
"@types/node": "^22.0.0",
"tsx": "^4.7.0",
"typescript": "^5.6.0"
}
}