-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 783 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 783 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
{
"name": "aws-serverless-api",
"version": "0.1.0",
"bin": {
"aws-serverless-api": "bin/aws-serverless-api.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"deploy": "cdk deploy --all --outputs-file cdk-output.json --require-approval never"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.114",
"@types/jest": "^29.5.1",
"@types/node": "20.1.7",
"aws-cdk": "2.86.0",
"esbuild": "^0.18.17",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "~5.1.3"
},
"dependencies": {
"aws-cdk-lib": "2.86.0",
"aws-lambda": "^1.0.7",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
},
"volta": {
"node": "18.17.0"
}
}