forked from iaincollins/nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
{
"name": "nextjs-starter",
"version": "7.0.2",
"description": "A starter Next.js project with email and oAuth authentication",
"author": "Iain Collins <[email protected]>",
"license": "ISC",
"repository": "https://github.com/iaincollins/nextjs-starter.git",
"main": "index.js",
"dependencies": {
"babel-core": "^6.26.3",
"babel-plugin-wrap-in-js": "^1.1.1",
"bootstrap": "^4.1.3",
"connect-mongo": "^2.0.3",
"dotenv": "^6.2.0",
"express-session": "^1.15.5",
"ionicons": "^4.5.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.2.1",
"mongodb": "^3.1.10",
"nedb": "^1.8.0",
"next": "^7.0.2",
"next-auth": "^1.12.1",
"node-sass": "^4.11.0",
"nodemailer": "^4.7.0",
"nodemailer-direct-transport": "^3.3.2",
"nodemailer-smtp-transport": "^2.7.4",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-twitter": "^1.0.4",
"popper.js": "^1.14.6",
"raw-loader": "^0.5.1",
"react": "^16.7.0",
"react-bootstrap-table": "^4.3.1",
"react-dom": "^16.7.0",
"react-syntax-highlighter": "^10.1.2",
"react-transition-group": "^2.5.1",
"reactstrap": "^6.5.0",
"sass-loader": "^7.1.0",
"universal-cookie": "^3.0.7"
},
"devDependencies": {
"cross-env": "^5.1.6"
},
"optionalDependencies": {
"fsevents": "*"
},
"scripts": {
"dev": "cross-env NODE_ENV=development PORT=3000 node index.js",
"build": "next build",
"start": "node index.js",
"postinstall": "next build"
},
"engines": {
"node": "8.11.x"
}
}