I have a project structure
|-app
|-...
|-libs
|- package.json
|- index.html
I want the node_modules folder to be inside 'libs' folder. Like this-
|-app
|-...
|-libs
|-node_modules
|-angular
|-...
|- package.json
|- index.html
Is there any way to set configuration for this. so that next time I install any package, that will be dependency will directly go to that folder.