-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·104 lines (104 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "next-express-bootstrap-boilerplate",
"version": "0.0.5",
"description": "JavaScript boilerplate for a full stack app built using React.js, Next.js, Express.js, react-bootstrap, SCSS and full SSR with eslint.",
"main": "app.js",
"repository": "https://github.com/MustansirZia/next-express-bootstrap-boilerplate",
"author": {
"name": "Mustansir Zia",
"email": "[email protected]"
},
"keywords": [
"react",
"react.js",
"nextjs",
"next.js",
"expressjs",
"express.js",
"react-bootstrap",
"scss",
"javascript",
"ssr",
"boilerplate"
],
"license": "MIT",
"scripts": {
"build": "cd app && next build",
"start": "npm run build && env NODE_ENV=production node app.js",
"dev": "nodemon --ignore app/ app.js"
},
"eslintConfig": {
"extends": "airbnb",
"settings": {
"import/core-modules": [
"styled-jsx/css"
]
},
"rules": {
"arrow-parens": "off",
"global-require": "off",
"indent": [
"error",
4
],
"no-console": "off",
"comma-dangle": "off",
"no-underscore-dangle": "off",
"func-names": "off",
"no-use-before-define": "off",
"react/jsx-indent": [
"error",
4
],
"react/jsx-indent-props": [
"error",
4
],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"react/react-in-jsx-scope": "off",
"react/no-danger": "off"
}
},
"dependencies": {
"@material-ui/core": "^4.0.0-alpha.8",
"@material-ui/styles": "^4.0.0-alpha.8",
"autoprefixer": "^9.5.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-wrap-in-js": "^1.1.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"glob": "^7.1.3",
"jss": "^9.8.7",
"material-ui": "^1.0.0-beta.47",
"morgan": "^1.9.1",
"next": "^8.1.0",
"node-sass": "^4.11.0",
"normalize.css": "^8.0.1",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.7.2",
"raw-loader": "^2.0.0",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.8",
"react-dom": "^16.8.6",
"react-jss": "^8.6.1",
"sass-loader": "^7.1.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.18.11"
}
}