I want to update node version from 8 to 10.
So have to update all npm packages which is compatible with node 10.
I can not run npm update
because it will update all packages to lattes version which might be not compatible with node 10.
One way to check every package version compatibility in their documentation and use that version into my package.json
file.
npm-check-updates
only talk about current version and latest version but not talk about compatible version.
I am looking smart way to do this.
Kindly suggest me something better solution. I will appreciate all responses.