-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 972 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
35
36
37
38
39
{
"name": "secrets-manager-secret-rotation",
"version": "1.0.0",
"description": "Shows how to use a custom resource",
"private": true,
"scripts": {
"prepare": "./build_zips.sh",
"build": "./build_zips.sh && tsc",
"watch": "tsc -w",
"cdk": "cdk"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"license": "MIT-0",
"devDependencies": {
"@aws-cdk/assert": "*",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"aws-cdk": "*",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
},
"dependencies": {
"@aws-cdk/aws-ec2": "*",
"@aws-cdk/aws-elasticache": "*",
"@aws-cdk/aws-iam": "*",
"@aws-cdk/aws-lambda": "*",
"@aws-cdk/aws-secretsmanager": "*",
"@aws-cdk/aws-sns": "*",
"@aws-cdk/aws-sns-subscriptions": "*",
"@aws-cdk/aws-sqs": "*",
"@aws-cdk/core": "*"
}
}