forked from iaincollins/nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.65 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
{
"name": "nextjs-starter",
"version": "2.11.0",
"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-plugin-wrap-in-js": "^1.1.1",
"body-parser": "^1.15.2",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-session": "^1.14.2",
"isomorphic-fetch": "^2.2.1",
"lusca": "^1.4.1",
"next": "^2.0.0",
"next-redux-wrapper": "^1.1.2",
"node-sass": "^4.5.0",
"nodemailer": "^2.7.0",
"now-logs": "0.0.7",
"orm": "^3.2.3",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-twitter": "^1.0.4",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^5.0.1",
"session-file-store": "^1.0.0",
"sqlite3": "^3.1.8",
"uuid": "^3.0.1"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-xo": "^0.17.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-config-xo-space": "^0.15.0",
"eslint-plugin-react": "^6.9.0",
"xo": "^0.17.1"
},
"scripts": {
"test": "xo",
"dev": "NODE_ENV=development PORT=3000 node index.js",
"build": "next build",
"start": "node index.js"
},
"engines": {
"node": "7.x.x"
},
"xo": {
"space:": 2,
"semicolon": false,
"extends": [
"xo-space",
"xo-react/space"
],
"ignores": [
"next.config.js"
]
}
}