forked from iaincollins/nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.97 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "nextjs-starter",
"version": "6.0.3",
"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.1",
"connect-mongo": "^2.0.1",
"dotenv": "^5.0.1",
"express-session": "^1.15.5",
"ionicons": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.2.1",
"mongodb": "^3.0.7",
"nedb": "^1.8.0",
"next": "^6.0.0",
"next-auth": "^1.8.5",
"node-sass": "^4.8.3",
"nodemailer": "^4.6.4",
"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.3",
"raw-loader": "^0.5.1",
"react": "^16.3.2",
"react-bootstrap-table": "^4.3.1",
"react-dom": "^16.3.2",
"react-syntax-highlighter": "^7.0.4",
"react-transition-group": "^2.3.1",
"reactstrap": "^6.0.1",
"sass-loader": "^7.0.1",
"universal-cookie": "^2.1.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-xo": "^0.22.1",
"eslint-config-xo-react": "^0.16.0",
"eslint-config-xo-space": "^0.18.0",
"eslint-plugin-react": "^7.7.0",
"xo": "^0.21.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"scripts": {
"test": "xo",
"dev": "NODE_ENV=development PORT=3000 node index.js",
"build": "next build",
"start": "node index.js",
"postinstall": "next build"
},
"engines": {
"node": "8.11.x"
},
"xo": {
"space:": 2,
"semicolon": false,
"extends": [
"xo-space",
"xo-react/space"
],
"ignores": [
"next.config.js"
]
},
"now": {
"name": "nextjs-starter",
"alias": "nextjs-starter.now.sh"
}
}