-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "o2r-guestlister",
"version": "0.3.0",
"description": "Node.js implementation for an oauth2 server allowing offline access with o2r-bouncer",
"main": "index.js",
"scripts": {
"start": "node index.js",
"debug": "DEBUG=guestlister node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o2r-project/o2r-guestlister.git"
},
"author": "o2r project (https://o2r.info)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/o2r-project/o2r-guestlister/issues"
},
"homepage": "https://github.com/o2r-project/o2r-guestlister#readme",
"dependencies": {
"backoff": "^2.5.0",
"body-parser": "^1.19.0",
"connect-ensure-login": "^0.1.1",
"connect-mongodb-session": "^2.3.1",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"ejs": "^3.0.1",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"mongojs": "^3.1.0",
"mongoose": "^5.9.4",
"oauth2orize": "^1.11.0",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"yn": "^4.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1"
}
}