Initial jenkins version

This commit is contained in:
Anup Raj Gopinathan
2025-06-25 13:22:01 +02:00
parent b5849c7fbd
commit 0e4f834409
12 changed files with 5069 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"name": "infra",
"version": "0.1.0",
"bin": {
"infra": "bin/infra.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "22.7.9",
"aws-cdk": "2.1019.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3"
},
"dependencies": {
"@aws-cdk/aws-lambda-python-alpha": "^2.202.0-alpha.0",
"aws-cdk-lib": "2.202.0",
"constructs": "^10.0.0"
}
}