-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 855 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 855 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
35
{
"name": "hw_cdk",
"version": "0.1.0",
"bin": {
"hw_cdk": "bin/hw_cdk.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"deploy": "npx cdk deploy",
"postinstall": "cd layers/hworld/nodejs && npm ci --only=production"
},
"devDependencies": {
"@aws-cdk/assert": "1.110.0",
"@aws-cdk/aws-apigateway": "^1.110.0",
"@aws-cdk/aws-lambda": "^1.110.0",
"@aws-cdk/aws-lambda-nodejs": "^1.110.0",
"@aws-cdk/core": "1.110.0",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"aws-cdk": "^1.110.0",
"esbuild": "^0.12.6",
"jest": "^26.4.2",
"source-map-support": "^0.5.16",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
},
"dependencies": {
"axios": "^0.21.1",
"follow-redirects": "^1.14.1"
}
}