-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 894 Bytes
/
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
32
33
34
{
"name": "cdk-codepipeline-and-local-lambda-guidance",
"version": "0.1.0",
"bin": {
"cdk-codepipeline-and-local-lambda-guidance": "bin/app.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@aws-cdk/assert": "1.23.0",
"@types/jest": "^24.0.22",
"@types/node": "10.17.5",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"aws-cdk": "1.23.0",
"ts-node": "^8.1.0",
"typescript": "~3.7.2"
},
"dependencies": {
"@aws-cdk/core": "1.23.0",
"@aws-cdk/aws-codebuild": "1.23.0",
"@aws-cdk/aws-codedeploy": "1.23.0",
"@aws-cdk/aws-codepipeline": "1.23.0",
"@aws-cdk/aws-codepipeline-actions": "1.23.0",
"@aws-cdk/aws-lambda": "1.23.0",
"@aws-cdk/aws-sns": "1.23.0",
"@aws-cdk/aws-sns-subscriptions": "1.23.0",
"source-map-support": "^0.5.16"
}
}