feat(infra): add aws lambda pulumi deployment target

This commit is contained in:
2026-03-23 13:56:15 +04:00
parent 2688d66f33
commit ee8c53d89b
20 changed files with 2492 additions and 861 deletions

View File

@@ -0,0 +1,21 @@
{
"name": "@household/infra-aws",
"private": true,
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json --noEmit",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "echo 'No tests for Pulumi program'",
"lint": "oxlint .",
"preview": "pulumi preview",
"up": "pulumi up"
},
"dependencies": {
"@pulumi/aws": "^7.9.1",
"@pulumi/awsx": "^3.3.0",
"@pulumi/pulumi": "^3.194.0"
},
"devDependencies": {
"@types/node": "^24.5.2"
}
}