forked from aws-samples/amazon-rds-init-cdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 757 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 757 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
{
"name": "cdk-resource-initializer",
"repository": "git@github.com:aws-samples/amazon-rds-init-cdk.git",
"version": "1.0.0",
"private": true,
"main": "index.js",
"license": "MIT-0",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.17.20",
"aws-cdk": "^2.0.0",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"@aws-sdk/client-lambda": "^3.0.0",
"@aws-sdk/client-rds": "^3.0.0",
"@aws-sdk/client-secrets-manager": "^3.0.0",
"@aws-sdk/client-s3": "^3.0.0"
},
"dependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}