What is Webpack?
a tool that bundles multiple modules into a single JS file.
How do you add a devDependency to a package?
npm install –save-dev
What is an NPM script?
it is a property of package.json and can be executed by running npm run; CLI command you can run
How do you execute Webpack with npm run?
npm run build, where build is the property of scripts with the value “webpack”