To remove packages in folder node_modules in bulk, you could also remove them from file package.json, save it, and then run npm prune
in the terminal.
This will remove those packages, which exist in the file system, but are not used/declared in file package.json.
P.S.: This is particularly useful on Windows, as you may often encounter problems with being unable to delete some files due to the "exceeded path length limit".