-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 751 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 751 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
31
32
33
34
35
{
"name": "user-authentication-api",
"version": "0.0.0",
"description": "Sample API for protecting routes with JWT authentication",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"authentication",
"jwt",
"api"
],
"author": "Auth0",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"boom": "^3.2.2",
"dotenv": "^8.2.0",
"glob": "^7.1.6",
"hapi": "^13.5.3",
"hapi-auth-jwt": "^4.0.0",
"joi": "^13.0.0",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"mongoose": "^5.10.7"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "none"
}
}