-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.08 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.08 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
35
36
{
"name": "aws-lambda-starter",
"version": "1.0.0",
"description": "Serverless + TypeScript starter for AWS Lambda using API Gateway",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "sls offline -s dev",
"deploy": "sls deploy",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"author": "j-Riv <jose.alfredo.rivera@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/aws-lambda": "^8.10.83",
"@types/isomorphic-fetch": "^0.0.35",
"@types/node": "^16.10.3",
"@types/serverless": "^1.78.35",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"aws-sdk": "^2.655.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"serverless": "^2.61.0",
"serverless-offline": "^8.2.0",
"serverless-plugin-typescript": "^2.1.0",
"typescript": "^4.4.3"
},
"dependencies": {
"aws-lambda": "^1.0.7",
"dotenv": "^10.0.0",
"isomorphic-fetch": "^3.0.0"
}
}