update required dependency npm package code example
Example 1: npm get latest version of package
npm show {pkg} version
Example 2: how to install latest version of npm package
//For global packages
npm i -g @latest
npm i -g express@latest
//For loacal packages
npm outdated
npm update
//Manually updating local packages
npm i @latest
npm update "react" "react-dom"