-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 830 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 830 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
{
"name": "auth-microservice",
"version": "1.0.0",
"main": "index.js",
"author": "Luis F. Bilecki <luis.bilecki@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "sls offline --skipCacheInvalidation",
"lint": "eslint ."
},
"dependencies": {
"@middy/core": "^1.0.0-beta.1",
"@middy/http-json-body-parser": "^1.0.0-beta.1",
"@middy/validator": "^1.0.0-beta.1",
"bcrypt": "^3.0.7",
"http-errors": "^1.7.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.6"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"serverless-dotenv-plugin": "^2.1.1",
"serverless-offline": "^5.12.1"
}
}