I copied package.json from another project and now want to bump all of the dependencies to their latest versions since this is a fresh project and I don\'t mind
I solved this by seeing the instructions from https://github.com/tjunnone/npm-check-updates
$ npm install -g npm-check-updates
$ ncu
$ ncu -u # to update all the dependencies to latest
$ ncu -u "specific module name" #in case you want to update specific dependencies to latest