-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (36 loc) · 831 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": "express-jwt-mongoose-example",
"version": "0.1.0",
"description": "A basic example of express server with JWT authentication (passport.js) and user entity handled by Mongoose",
"private": false,
"scripts": {
"start": "node ./bin/www"
},
"dependencies": {
"bcrypt": "^0.8.6",
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"jade": "~1.11.0",
"jsonwebtoken": "^7.0.0",
"mongoose": "^4.4.19",
"morgan": "~1.6.1",
"passport": "^0.3.2",
"passport-jwt": "^2.0.0",
"serve-favicon": "~2.3.0"
},
"repository": {
"type": "git",
"url": "git repooooo"
},
"keywords": [
"express",
"jwt",
"authentication",
"passport",
"mongoose"
],
"author": "Kevin Nguyen",
"license": "MIT"
}