What is webpack?
webpack lets you bundle your JS apps and it can be extended to support many different assets such as images, fonts, and stylesheets
How do you add a devDependency to a package?
you use npm install –save-dev [packageName]
dependencies are needed to run in browser
What is an NPM script?
an npm script bundles common shell commands for your project
How do you execute Webpack with npm run?
npm run build which runs your NPM script from the command line