This repository was archived by the owner on Jul 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 417
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.99 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.99 KB
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
78
{
"name": "nextjs-starter",
"version": "6.1.0",
"description": "A starter Next.js project with email and oAuth authentication",
"author": "Iain Collins <me@iaincollins.com>",
"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.2",
"connect-mongo": "^2.0.1",
"dotenv": "^6.0.0",
"express-session": "^1.15.5",
"ionicons": "^4.2.4",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.2.1",
"mongodb": "^3.1.1",
"nedb": "^1.8.0",
"next": "^6.1.1",
"next-auth": "^1.9.0",
"next-seo": "^1.1.1",
"node-sass": "^4.9.2",
"nodemailer": "^4.6.7",
"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.4.1",
"react-bootstrap-table": "^4.3.1",
"react-dom": "^16.4.1",
"react-syntax-highlighter": "^8.0.1",
"react-transition-group": "^2.4.0",
"reactstrap": "^6.3.0",
"sass-loader": "^7.0.3",
"universal-cookie": "^2.2.0"
},
"devDependencies": {
"eslint": "^5.1.0",
"eslint-config-xo": "^0.23.0",
"eslint-config-xo-react": "^0.17.0",
"eslint-config-xo-space": "^0.19.0",
"eslint-plugin-react": "^7.10.0",
"xo": "^0.21.1"
},
"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"
}
}