-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 789 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 789 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
{
"name": "cdk-workshop",
"version": "0.1.0",
"type": "module",
"scripts": {
"lint": "tsc --noEmit",
"prebuild": "rm -rf dist",
"build": "node esbuild.config.js",
"start": "node dist/cdk-workshop.js",
"test": "vitest",
"cdk": "cdk",
"cdk:bootstrap": "cdk bootstrap",
"cdk:diff": "cdk diff",
"cdk:deploy": "cdk deploy",
"cdk:destroy": "cdk destroy"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.137",
"@types/node": "20.11.30",
"esbuild": "^0.20.2",
"typescript": "~5.4.3",
"vitest": "^0.34.6"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.556.0",
"@aws-sdk/client-lambda": "^3.556.0",
"aws-cdk-lib": "2.137.0",
"cdk-dynamo-table-viewer": "^0.2.488",
"constructs": "^10.0.0"
}
}