删除nodejs devDependencies

有没有办法删除nodeJs devDependencies而不删除一切。 我在目标服务器上没有npm,所以我执行以下操作:

$ npm install $ grunt build $ rm -rf node_modules $ npm install --production 

有谁知道是否存在可以清除已安装模块的npm模块。 TIA!

你可以使用npm prune –production