-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "aws-code-pipeline-with-s3-deployment",
"version": "0.1.0",
"bin": {
"aws-code-pipeline-with-s3-deployment": "bin/aws-code-pipeline-with-s3-deployment.js"
},
"scripts": {
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"build": "tsc && npm run cdk synth",
"cdk:destroy": "npm run cdk destroy -- --app cdk.out --all --role-arn=arn:aws:iam::$(aws sts get-caller-identity --query 'Account' --output text):role/exanubes-cloudformation-access",
"cdk:deploy": "npm run cdk deploy -- --app cdk.out --all --role-arn=arn:aws:iam::$(aws sts get-caller-identity --query 'Account' --output text):role/exanubes-cloudformation-access"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"aws-cdk": "2.13.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
},
"dependencies": {
"@aws-sdk/client-config-service": "^3.52.0",
"@types/aws-lambda": "^8.10.92",
"aws-cdk-lib": "2.13.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.16"
}
}