Skip to content

Instantly share code, notes, and snippets.

@dmikey
Created June 6, 2018 19:33
Show Gist options
  • Save dmikey/68c81283a5c842ff5bb7896a1b1e06b7 to your computer and use it in GitHub Desktop.
Save dmikey/68c81283a5c842ff5bb7896a1b1e06b7 to your computer and use it in GitHub Desktop.
minimal package.json for webpack development
{
"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