-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 767 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 767 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
{
"name": "demo-app",
"version": "0.1.0",
"bin": {
"demo-app": "bin/demo-app.js"
},
"scripts": {
"synth": "cdk synth -q",
"deploy": "cdk deploy --app cdk.out --all",
"destroy": "cdk destroy --app cdk.out --all",
"clean": "rimraf cdk.out",
"sam:lambda": "sam.cmd local invoke -t cdk.out/DemoAppStack.template.json",
"sam:api": "sam.cmd local start-api -t cdk.out/DemoAppStack.template.json --warm-containers EAGER"
},
"devDependencies": {
"@types/node": "^20.16.5",
"aws-cdk": "^2.158.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"aws-cdk-lib": "^2.158.0",
"constructs": "^10.3.0",
"md5-file": "^5.0.0",
"source-map-support": "^0.5.21"
}
}