Created
June 6, 2018 19:33
-
-
Save dmikey/68c81283a5c842ff5bb7896a1b1e06b7 to your computer and use it in GitHub Desktop.
minimal package.json for webpack development
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "app", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"serve": "webpack-dev-server --config webpack.config.js --content-base build/" | |
}, | |
"author": "", | |
"license": "ISC", | |
"devDependencies": { | |
"babel-core": "^6.26.0", | |
"babel-loader": "^7.1.2", | |
"babel-preset-env": "^1.6.1", | |
"html-webpack-plugin": "^2.29.0", | |
"html-webpack-template": "^6.1.0", | |
"webpack": "^3.1.0", | |
"webpack-dev-server": "^2.11" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment