-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 797 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 797 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
{
"name": "cdk-workshop",
"version": "0.3.0",
"type": "module",
"scripts": {
"lint": "eslint --fix .",
"format": "prettier --write .",
"prebuild": "rm -rf dist",
"build": "node esbuild.config.js",
"start": "node cdk.out/cdk-workshop.js",
"test": "vitest",
"cdk": "cdk"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/aws-lambda": "^8.10.125",
"@types/node": "^20.13.0",
"esbuild": "^0.21.4",
"eslint": "^8.57.0",
"globals": "^15.3.0",
"prettier": "^3.2.5",
"typescript": "~5.4.5",
"typescript-eslint": "^7.11.0",
"vitest": "^1.6.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.438.0",
"@aws-sdk/client-lambda": "^3.438.0",
"aws-cdk-lib": "^2.144.0",
"constructs": "^10.0.0"
}
}