mirror of
https://github.com/ivabus/www
synced 2024-11-10 17:45:15 +03:00
26 lines
908 B
JSON
26 lines
908 B
JSON
{
|
|
"name": "deploy-your-pull-requests-to-aws-using-github-actions-and-aws-cdk",
|
|
"version": "1.1.0",
|
|
"main": "index.js",
|
|
"author": "Julien Goux",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=14 <15"
|
|
},
|
|
"scripts": {
|
|
"bootstrap": "CDK_NEW_BOOTSTRAP=1 cdk bootstrap --cloudformation-execution-policies arn:aws:iam::aws:policy/AdministratorAccess",
|
|
"deploy": "cdk deploy \"TeaXYZ-${STAGE}\" --require-approval never --outputs-file cdk.out.json",
|
|
"postdeploy": "node --eval \"console.log('::set-output name=env_url::' + require('./cdk.out.json')['TeaXYZ-${STAGE}'].DeploymentUrl)\"",
|
|
"destroy": "cdk destroy \"TeaXYZ-${STAGE}\" --force"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node14": "1.0.0",
|
|
"@types/node": "14.14.34",
|
|
"cdk": "^2.0.0",
|
|
"aws-cdk-lib": "^2.0.0",
|
|
"constructs": "^10.0.0",
|
|
"ts-node": "9.1.1",
|
|
"typescript": "4.2.3"
|
|
}
|
|
} |