forked from jhiner/node-co-auth0js-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 897 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
39
{
"name": "nodejs-quickstart",
"version": "1.0.0",
"description": "This is a prototype nodejs quickstart project to demonstrate new OAuth as a service features with Auth0.",
"main": "app.js",
"scripts": {
"start": "node server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.3",
"debug": "^2.6.8",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-session": "^1.14.1",
"jade": "^1.11.0",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-auth0": "^0.5.2",
"request": "^2.81.0",
"selfsigned": "^1.9.1",
"req-flash": "0.0.3"
},
"now": {
"files": [
".env",
"./public",
"./views",
"app.js",
"server.js",
"./routes"
],
"name": "node-co-demo",
"alias": "node-co-demo"
}
}