[#140382397] #5 Add zip compression on production
... | ... | @@ -4,9 +4,9 @@ |
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "webpack --config webpack.config.js --progress --colors", | ||
"build-production": "webpack --config webpack.prod.config.js --progress --colors", | ||
"webpack": "webpack --progress --display-error-details --config webpack.config.js --watch", | ||
"build": "webpack --config webpack.prod.config.js --progress --colors", | ||
"build-production": "webpack --config webpack.prod.config.js --progress --colors && sed -i 's/js/js.gz/g' webpack-stats.json", | ||
"webpack": "webpack -p --progress --display-error-details --config webpack.config.js --watch", | ||
"watch": "node server.js", | ||
"karma": "karma start" | ||
}, | ||
... | ... | @@ -44,7 +44,6 @@ |
"react-dom": "^15.4.1", | ||
"react-router": "^3.0.2", | ||
"react-tap-event-plugin": "^2.0.1", | ||
"semantic-ui-css": "^2.2.9", | ||
"semantic-ui-react": "^0.65.0" | ||
} | ||
} |
Please register or sign in to comment