What is Webpack?
JS module bundler
How do you add a devDependency to a package?
npm install –save-dev package
What is an NPM script?
a way to bundle common shell commands for your project
How do you execute Webpack with “npm run”?
npm run “build”
What are dependencies?
packages required by your application in production
What are devDependencies?
packages that are only needed for local development and testing.