Spesific update

npm install eslint@4.5.1

Save as dev dependency (not to run the code, example prettier)

npm install eslint@4.5.1 --save-dev

Lint check

npm run lint

Edit commit message already on GitHub PR

git commit --amend -m "chore: Update project dependencies to latest versions"
git push origin your-branch-name --force

This resets all commits on your current branch and all changes will show up as uncommited changed. Commit from start regularly, and when you're done with EVERYTHING run git push-f

git reset $(git merge-base main BRANCHNAME)