-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 898 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 898 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": "example-cdk-dynamodb-stream-to-redshift",
"version": "0.1.0",
"bin": {
"example-cdk-dynamodb-stream-to-redshift": "bin/example-cdk-dynamodb-stream-to-redshift.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"deploy": "cdk deploy --outputs-file outputs.json --all",
"deploy:watch": "cdk deploy --require-approval never --outputs-file outputs.json --watch",
"destroy": "cdk destroy --all"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "10.17.27",
"aws-cdk": "2.24.1",
"esbuild": "^0.14.39",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "~3.9.7"
},
"dependencies": {
"@aws-cdk/aws-redshift-alpha": "2.24.1-alpha.0",
"aws-cdk-lib": "2.24.1",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}