remove node_modules package code example
Example 1: uninstall webpack globally
npm uninstall -g webpack
npm uninstall webpack
Example 2: delete node module
npm uninstall node_module_name
Example 3: how to totally uninstall prettier
//This is how you remove package from your dependencies in project.json
npm uninstall --save <package_name>
Example 4: how to totally uninstall prettier
npm uninstall <package_name>