update package versions; upgrade webpack-dev-middleware options for dev server

This commit is contained in:
bkmartinjr
2018-08-13 17:07:53 -07:00
parent a03f4bcdd9
commit 113cf17183
2 changed files with 5 additions and 4 deletions
+4 -3
View File
@@ -27,6 +27,7 @@
"eslint-scope": "3.7.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"canvas-fit": "^1.5.0",
"d3": "^4.10.0",
"font-color-contrast": "^1.0.3",
@@ -54,7 +55,7 @@
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^9.1.0",
"autoprefixer": "^9.1.1",
"babel-core": "^6.13.2",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.2",
@@ -76,7 +77,7 @@
"eslint-config-airbnb": "^17.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"express": "^4.14.0",
@@ -96,7 +97,7 @@
"url-loader": "^1.0.1",
"webpack": "^4.16.0",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.3"
},
"jest": {
+1 -1
View File
@@ -32,7 +32,7 @@ app.use(historyApiFallback({ verbose: false }));
app.use(
require("webpack-dev-middleware")(compiler, {
noInfo: true,
logLevel: 'warn',
publicPath: config.output.publicPath
})
);