dev_arc_aws/backend/package.json
Samuel James b9f6d4f61e
All checks were successful
CI / validate (pull_request) Successful in 57s
Add system design, CloudFormation, theming assets, cleanup
- System design doc (self-hosted + module model, hybrid architecture)
- HTML visualization for design review
- Architecture diagram (Python diagrams library, real AWS icons)
- CloudFormation template (t4g.small EC2 + Docker Compose)
- Theme reference images (midnight blue, forest, light)
- Updated README for new product direction
- MCP config (context7 only, removed aws-docs)
- Backend type deps fixed for Windows dev

Co-authored-by: Samuel James <ssamjame@amazon.com>
Co-authored-by: Kiro <noreply@kiro.dev>
2026-06-24 09:54:37 -04:00

37 lines
932 B
JSON

{
"name": "archnest-backend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -b",
"start": "node dist/server.js"
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.1072.0",
"@aws-sdk/client-sts": "^3.1072.0",
"@fastify/cors": "^10.0.1",
"@fastify/jwt": "^10.1.0",
"@fastify/multipart": "^10.0.0",
"@fastify/websocket": "^11.2.0",
"@types/ssh2": "^1.15.5",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^11.8.1",
"dotenv": "^16.6.1",
"fastify": "^5.2.1",
"guacamole-lite": "^1.2.0",
"node-pty": "^1.1.0",
"socket.io-client": "^4.8.3",
"ssh2": "^1.17.0",
"undici": "^8.5.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.20.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}