Started webpack update
This diff is collapsed.
... | ... | @@ -5,48 +5,76 @@ |
"private": true, | ||
"dependencies": { | ||
"array-sort": "^0.1.4", | ||
"autosuggest-highlight": "^3.1.0", | ||
"classnames": "^2.2.5", | ||
"fuzzysearch": "^1.0.3", | ||
"history": "^4.6.3", | ||
"immutability-helper": "^2.3.0", | ||
"mapbox": "^1.0.0-beta9", | ||
"mapbox-gl": "^0.40.1", | ||
"material-ui": "^1.0.0-beta.25", | ||
"material-ui-icons": "^1.0.0-alpha.19", | ||
"node-sass-chokidar": "^0.0.3", | ||
"npm-run-all": "^4.1.1", | ||
"phone-formatter": "^0.0.2", | ||
"promise": "7.1.1", | ||
"prop-types": "^15.5.10", | ||
"react": "^15.6.1", | ||
"react-autosuggest": "^9.3.2", | ||
"react-classnames": "^0.1.2", | ||
"react-dom": "^15.6.1", | ||
"react-mapbox-gl": "^2.5.2", | ||
"react-notification-system": "^0.2.16", | ||
"react-redux": "^5.0.5", | ||
"react-router-dom": "^4.1.2", | ||
"react-router-redux": "^5.0.0-alpha.9", | ||
"react-scripts": "1.0.10", | ||
"redux": "^3.7.2", | ||
"redux-thunk": "^2.2.0", | ||
"typeface-roboto": "0.0.50" | ||
"typeface-roboto": "0.0.50", | ||
"webpack-manifest-plugin": "1.1.0" | ||
}, | ||
"devDependencies": { | ||
"babel-eslint": "^7.2.3", | ||
"eslint-plugin-react": "^7.5.1" | ||
"autoprefixer": "7.1.1", | ||
"babel": "^6.23.0", | ||
"babel-cli": "^6.26.0", | ||
"babel-core": "^6.26.3", | ||
"babel-loader": "^7.1.4", | ||
"babel-plugin-transform-class-properties": "^6.24.1", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-react": "^6.24.1", | ||
"eslint": "4.19.1", | ||
"babel-eslint": "^8.2.3", | ||
"clean-webpack-plugin": "^0.1.19", | ||
"css-loader": "^0.28.4", | ||
"eslint-loader": "^2.0.0", | ||
"eslint-plugin-react": "^7.8.2", | ||
"file-loader": "^1.1.11", | ||
"html-webpack-plugin": "^3.2.0", | ||
"mini-css-extract-plugin": "^0.4.0", | ||
"node-sass": "^4.9.0", | ||
"optimize-css-assets-webpack-plugin": "^4.0.2", | ||
"sass-loader": "^7.0.2", | ||
"style-loader": "^0.18.2", | ||
"uglifyjs-webpack-plugin": "^1.2.5", | ||
"webpack": "^4.4.1", | ||
"webpack-cli": "^2.1.5", | ||
"webpack-dev-server": "^3.1.4", | ||
"postcss-loader": "2.0.6", | ||
"sw-precache-webpack-plugin": "0.11.3" | ||
}, | ||
"proxy": "http://localhost:3001", | ||
"scripts": { | ||
"build-css": "node-sass-chokidar src/styles/ -o src/styles/build", | ||
"watch-css": "node-sass-chokidar src/styles/ -o src/styles/build --watch --recursive", | ||
"start-js": "react-scripts start", | ||
"start": "npm-run-all -p build-css watch-css start-js", | ||
"build-js": "react-scripts build", | ||
"build": "npm-run-all build-css build-js", | ||
"test": "react-scripts test --env=jsdom", | ||
"eject": "react-scripts eject", | ||
"storybook": "start-storybook -p 9009 -s public", | ||
"build-storybook": "build-storybook -s public" | ||
"build": "webpack --config webpack/webpack.config.prod.js", | ||
"serve": "webpack-dev-server --config webpack/webpack.config.dev.js --open" | ||
}, | ||
"babel": { | ||
"presets": [ | ||
[ | ||
"env", | ||
{ | ||
"modules": false | ||
} | ||
], | ||
"react" | ||
], | ||
"plugins": [ | ||
"transform-class-properties" | ||
] | ||
}, | ||
"eslintConfig": { | ||
"extends": "react" | ||
} | ||
} |
webpack/loaders.js
0 → 100644
webpack/paths.js
0 → 100644
Please register or sign in to comment