node package.jsonのライブラリバージョンアップ#
ひとつずつ#
npm install {PACKAGE} {VERSION}
一度にすべて上げたい場合#
npx -p npm-check-updates -c "ncu" // 最新バージョンの確認
npx -p npm-check-updates -c "ncu -u" // package.jsonの記載更新
npm install // インストール
参考#
GitHub - raineorshine/npm-check-updates: Find newer versions of package dependencies than what your package.json allows
package.json に記載されているパッケージのバージョンアップ方法 【 npm-check-updates, outdated 】 - Qiita