forked from MustansirZia/next-express-bootstrap-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.4 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
{
"name": "next-express-bootstrap-boilerplate",
"version": "0.0.6",
"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/phuongnq/next-express-bootstrap-boilerplate",
"author": {
"name": "Phil Nguyen",
"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",
2
],
"no-console": "off",
"comma-dangle": "off",
"no-underscore-dangle": "off",
"func-names": "off",
"no-use-before-define": "off",
"react/jsx-indent": [
"error",
2
],
"react/jsx-indent-props": [
"error",
2
],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"react/react-in-jsx-scope": "off",
"react/no-danger": "off"
}
},
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"autoprefixer": "^9.6.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-wrap-in-js": "^1.1.0",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"glob": "^7.1.2",
"morgan": "^1.9.0",
"next": "^9.1.4",
"node-sass": "^4.12.0",
"normalize.css": "^8.0.0",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.6.0",
"raw-loader": "^4.0.0",
"react": "^16.0.0",
"react-bootstrap": "^1.0.0-beta.9",
"react-dom": "^16.0.0",
"sass-loader": "^8.0.0"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"nodemon": "^2.0.1"
}
}