-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 990 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 990 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
33
34
35
36
37
38
39
{
"name": "ddb-single-table",
"version": "0.1.0",
"bin": {
"ddb-single-table": "bin/ddb-single-table.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"bundle": "cp -R node_modules lambda/",
"deploy": "npm run build && npm run bundle && cdk deploy '*'"
},
"devDependencies": {
"@aws-cdk/assert": "1.63.0",
"@types/chance": "^1.1.0",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"@types/uuid": "^8.3.0",
"aws-cdk": "^1.63.0",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"ts-node": "^8.1.0",
"typescript": "~3.9.7"
},
"dependencies": {
"@aws-cdk/aws-apigatewayv2": "1.63.0",
"@aws-cdk/aws-dynamodb": "1.63.0",
"@aws-cdk/aws-iam": "1.63.0",
"@aws-cdk/aws-lambda": "1.63.0",
"@aws-cdk/core": "1.63.0",
"aws-sdk": "^2.763.0",
"aws-xray-sdk": "^3.2.0",
"chance": "^1.1.7",
"source-map-support": "^0.5.16",
"uuid": "^8.3.0"
}
}