Is there a way to delete devDependencies in nodejs without deleting everything. I have no npm on the destination server so I do the following:
$ npm install
$ grunt build
$ rm -rf node_modules
$ npm install --production
Does anyone know if there exists an npm module that can purge installed modules. TIA!
You can use npm prune --production