forked from aws-samples/aws-ecs-devops-using-aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 722 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 722 Bytes
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
32
{
"name": "aws-ecs-devops-using-aws-cdk",
"version": "1.1.0",
"bin": {
"aws-ecs-devops-using-aws-cdk": "infra/app-main.ts"
},
"scripts": {
"cdk-ver": "cdk --version",
"cdk-ls": "cdk list",
"cdk-deploy": "cdk deploy",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@aws-cdk/assert": "1.138.0",
"@types/jest": "^27.5.2",
"@types/node": "10.17.27",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"aws-cdk": "2.40.0",
"ts-node": "^10.9.1",
"typescript": "~3.9.7"
},
"dependencies": {
"aws-cdk-lib": "2.40.0",
"constructs": "^10.0.0",
"env-var": "6.3.0",
"source-map-support": "^0.5.21"
}
}