-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 KB
/
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
40
41
42
43
44
45
{
"name": "kinesis-data-firehose-s3",
"version": "0.1.0",
"bin": {
"kinesis-data-firehose-s3": "bin/kinesis-data-firehose-s3.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"bootstrap": "cdk bootstrap --profile kinesis-data-firehose-s3",
"deploy": "cdk deploy kinesis-data-firehose-s3 --profile kinesis-data-firehose-s3 --outputs-file outputs.json",
"destroy": "cdk destroy kinesis-data-firehose-s3 --profile kinesis-data-firehose-s3"
},
"devDependencies": {
"@aws-cdk/assert": "1.128.0",
"@aws-cdk/aws-kinesisfirehose-destinations": "^1.128.0",
"@aws-cdk/aws-lambda-nodejs": "^1.128.0",
"@aws-cdk/aws-logs-destinations": "^1.128.0",
"@aws-cdk/aws-s3": "^1.128.0",
"@aws-cdk/core": "1.128.0",
"@types/aws-lambda": "^8.10.84",
"@types/chance": "^1.1.3",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"@types/pino": "^6.0.0",
"aws-cdk": "1.128.0",
"esbuild": "^0.13.8",
"jest": "^26.4.2",
"source-map-support": "^0.5.16",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "4.3.2"
},
"dependencies": {
"@aws-sdk/client-firehose": "^3.37.0",
"@aws-sdk/client-lambda": "^3.37.0",
"chance": "^1.1.8",
"dotenv": "^10.0.0",
"env-var": "^7.0.1",
"pino": "^6.0.0",
"pino-lambda": "^3.0.0"
}
}