What is Webpack?
a tool that lets you compile JavaScript modules, also known as module bundler. Takes bunch of JavaScript files and compiles into one.
How do you add a devDependency to a package?
npm install –save-dev
What is an NPM script?
a convenient way to bundle common shell commands for your project
How do you execute Webpack with npm run?
npm run script-name