-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.55 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "auth1-server",
"version": "0.1.0",
"private": true,
"scripts": {
"pretty": "prettier --write src/**/*.js",
"start:dev": "nodemon src/index.js --watch ./src",
"start": "node ./src/bin/www"
},
"license": "ISC",
"author": {
"name": "Jose Miguel Navarro",
"email": "jmn8718@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jmn8718/auth1-server.git"
},
"homepage": "https://github.com/jmn8718/auth1-server",
"keywords": [
"passport",
"oauth",
"openid",
"google",
"github",
"node",
"javascript",
"docker"
],
"dependencies": {
"bcrypt": "^3.0.6",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-session": "^1.16.1",
"flowstate": "^0.4.1",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mongoose": "^5.5.12",
"morgan": "~1.9.1",
"node-uid": "^0.1.3",
"oauth2orize": "^1.11.0",
"oauth2orize-audience": "^0.1.1",
"oauth2orize-openid": "^0.4.0",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-google-oauth": "^2.0.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"pug": "^2.0.3",
"qs": "^6.7.0",
"winston": "^3.2.1",
"xenv": "^4.4.1"
},
"devDependencies": {
"nodemon": "^1.19.1",
"prettier": "^1.17.1"
}
}