-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.17 KB
/
package.json
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
36
37
38
{
"name": "yyt-binary-distribution-api",
"description": "RESTful APIs for upload and retrieve binary distributions based on AWS SAM",
"version": "0.1.0",
"main": "src/get.ts",
"license": "MIT",
"scripts": {
"start": "sls offline",
"build": "node --max-old-space-size=4096 node_modules/serverless/bin/serverless package",
"deploy": "node --max-old-space-size=4096 node_modules/serverless/bin/serverless deploy",
"debug": "SLS_DEBUG=* node --inspect ./node_modules/.bin/serverless offline -s dev"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.34",
"@types/node": "10",
"prettier": "^1.18.2",
"serverless": "^1.57.0",
"serverless-offline": "^5.12.0",
"serverless-prune-plugin": "^1.4.1",
"serverless-webpack": "^5.3.1",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2",
"webpack": "^4.41.2"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"api-gateway-rest-handler": "^0.1.5",
"aws-xray-sdk-core": "^2.4.0",
"p-limit": "^2.2.1",
"source-map-support": "^0.5.16"
}
}