-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 892 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
{
"name": "api-lambda-crud-dynamodb",
"version": "1.0.0",
"description": "Running an API Gateway with five Lambdas to do CRUD operations on DynamoDB",
"private": true,
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk",
"synth": "npx cdk synth",
"deploy": "npx cdk deploy",
"destroy": "npx cdk destroy"
},
"author": {
"name": "Bibek Gupta",
"email": "[email protected]"
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.614.0",
"@aws-sdk/lib-dynamodb": "^3.614.0",
"@types/aws-lambda": "^8.10.140",
"@types/node": "^20.14.10",
"@types/uuid": "^10.0.0",
"aws-cdk": "^2.148.0",
"esbuild": "^0.21.5",
"ts-node": "^10.9.2",
"typescript": "~5.4.5"
},
"dependencies": {
"aws-cdk-lib": "^2.148.0",
"constructs": "^10.3.0",
"uuid": "^10.0.0"
}
}