Is there a way I can update package.json from node_modules directory? Sometimes I forget to use --save flag.
Thanks!
I came up with this simple cmd
npm install `ls node_modules` --save
It's good enough for my case :-)