-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1003 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
{
"name": "aws-sam-cdk",
"version": "0.1.0",
"bin": {
"aws-sam-cdk": "bin/aws-sam-cdk.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test:infra": "jest --config='jest-infra.config.js'",
"test:lambda": "jest --config='jest-lambda.config.js'",
"cdk": "cdk",
"cfn-diagram": "cfn-diagram draw.io ./cdk.out/*.template.json"
},
"devDependencies": {
"@mhlabs/cfn-diagram": "^1.1.36",
"@types/aws-lambda": "^8.10.110",
"@types/jest": "^29.4.0",
"@types/node": "18.13.0",
"@types/pg": "^8.6.6",
"aws-cdk": "2.65.0",
"aws-sdk-client-mock": "^2.1.1",
"aws-sdk-client-mock-jest": "^2.1.1",
"jest": "^29.4.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.352.0",
"@aws-sdk/client-s3": "^3.352.0",
"@fast-csv/parse": "^4.3.6",
"aws-cdk-lib": "2.65.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}