How to update each dependency in package.json to the latest version 2022-05-11 36 words - 1 min read You have 2 options: Option 1 – Recommended (Using npx) 1 2 npx npm-check-updates -u npm install Option 2 – Older way (Using npm globally) 1 2 3 npm i -g npm-check-updates ncu -u npm install