forked from auth0-blog/nextjs-passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "nextjs-passport",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node ./src/server.js",
"build": "next build ./src",
"start": "NODE_ENV=production node ./src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-blog/nextjs-passport.git"
},
"keywords": [],
"author": "Bruno Krebs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0-blog/nextjs-passport/issues"
},
"homepage": "https://github.com/auth0-blog/nextjs-passport#readme",
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"dotenv": "^8.0.0",
"dotenv-webpack": "^1.7.0",
"express": "^4.16.4",
"express-session": "^1.16.1",
"isomorphic-fetch": "^2.2.1",
"next": "^8.1.0",
"passport": "^0.4.0",
"passport-auth0": "^1.1.0",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.8",
"react-dom": "^16.8.6",
"styled-components": "^4.2.0",
"uid-safe": "^2.1.5"
}
}