-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 886 Bytes
/
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
{
"name": "serverless-lambda-authorizer-jwt",
"version": "0.0.1",
"description": "Serverless REST API using serverless",
"main": "handlers.js",
"scripts": {
"start": "",
"dev": "",
"deploy": "serverless deploy",
"lint": "eslint ./src --ext .json --ext .js --fix"
},
"keywords": [
"node",
"microservice",
"lambda",
"serverless"
],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.796.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^8.5.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-watch": "^3.1.4",
"serverless": "^2.11.1"
}
}