You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/cdk_deploy/package.json

35 lines
933 B

{
"name": "cdk_deploy",
"version": "0.1.0",
"bin": {
"cdk_deploy": "bin/cdk_deploy.js"
},
"scripts": {
"cdk": "cdk",
"deploy:dev": "cdk deploy CPDocusealStack-dev --profile default",
"deploy:staging": "cdk deploy CPDocusealStack-staging --profile default",
"deploy:prod": "cdk deploy CPDocusealStack-production --profile default",
"destroy:dev": "cdk destroy CPDocusealStack-dev --profile default",
"destroy:staging": "cdk destroy CPDocusealStack-staging --profile default",
"destroy:prod": "cdk destroy CPDocusealStack-production --profile default",
"synth": "cdk synth",
"diff": "cdk diff",
"bootstrap": "cdk bootstrap"
},
"devDependencies": {
"aws-cdk": "2.1021.0"
},
"dependencies": {
"aws-cdk-lib": "^2.205.0",
"cdk-nag": "^2.36.22",
"constructs": "^10.3.0"
},
"keywords": [
"aws",
"cdk",
"infrastructure",
"ecs",
"alb"
]
}