-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 864 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
{
"name": "node_auth_api_with_jwt_boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "nodemon ./bin/www",
"dev": "nodemon ./bin/www"
},
"author": {
"name": "Jason Williams",
"email": "[email protected]"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.17.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.3",
"debug": "~2.6.3",
"dotenv": "^4.0.0",
"ejs": "~2.5.6",
"express": "~4.15.2",
"jwt-simple": "^0.5.1",
"mongoose": "^4.9.8",
"morgan": "~1.8.1",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"serve-favicon": "~2.4.2"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/jwill9999/Node_Auth_API_with_JWT_Boilerplate.git"
}
}