-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 1.12 KB
/
package.json
File metadata and controls
34 lines (33 loc) · 1.12 KB
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": "serverless-aws-lambda-typescript",
"version": "0.0.1",
"description": "serverless-aws-lambda-typescript",
"scripts": {
"install": "typings install",
"build": "rimraf ./dist && tsc",
"deploy": "npm run build && serverless deploy",
"typings": "typings install",
"lint": "tslint \"src/**/*.ts\" --force",
"test:function": "serverless invoke --function serverlessAWSLambdaTS",
"test:runlocal": "npm run build && run-local-lambda --file dist/handler.js --handler handleIt --event eventExample.json --timeout 5000",
"test:local": "npm run build && lambda-local --function dist/handler.js --event eventExample.json --timeout 5"
},
"dependencies": {
"aws-sdk": "^2.5.5",
"axios": "^0.19.0"
},
"devDependencies": {
"@types/aws-lambda": "0.0.5",
"@types/aws-sdk": "0.0.40",
"@types/es6-promise": "0.0.32",
"@types/node": "^4.0.0",
"aws-lambda-local": "^1.0.14",
"aws-sdk-typescript": "0.0.3",
"codelyzer": "0.0.28",
"rimraf": "^2.5.4",
"run-local-lambda": "^1.1.1",
"tslint": "^3.15.1",
"typescript": "2.0.0",
"typings": "^1.3.3"
}
}