-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 860 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
38
{
"name": "nodejs-auth-api",
"version": "1.0.0",
"description": "Node JS API to Authentication with JWT",
"main": "app.js",
"scripts": {
"start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felipesantanadev/nodejs-auth-api.git"
},
"keywords": [
"nodejs",
"node-js",
"javascript",
"jwt",
"authentication",
"api"
],
"author": "Felipe Santana",
"license": "ISC",
"bugs": {
"url": "https://github.com/felipesantanadev/nodejs-auth-api/issues"
},
"homepage": "https://github.com/felipesantanadev/nodejs-auth-api#readme",
"dependencies": {
"@hapi/joi": "^16.1.4",
"bcrypt": "^3.0.6",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.11"
},
"devDependencies": {
"nodemon": "^1.19.2"
}
}