LoginSignup
0
0

More than 5 years have passed since last update.

package.jsonを最新Ver.にする

Last updated at Posted at 2019-01-30

忘れるのでメモ

package.jsonを最新Ver.にする。

yarn upgrade --latest

または、

npm install -g npm-check-updates

before

  "dependencies": {
    "axios": "^0.18.0",
    "connected-react-router": "^6.0.0",
    "react": "^16.6.3",
    "react-app-polyfill": "0.1.3",
    "react-dom": "^16.6.3",
    "react-redux": "^6.0.0",
    "react-router": "^4.3.1",
    "react-router-dom": "^4.3.1",
    "history": "^4.7.2",
    "react-scripts": "2.1.1",
    "redux": "^4.0.1",
    "redux-actions": "2.6.4",
    "redux-logger": "^3.0.6",
    "redux-saga": "1.0.0-beta.3",
    "semantic-ui-css": "^2.4.1",
    "semantic-ui-react": "^0.83.0"
  },

after

  "dependencies": {
    "axios": "^0.18.0",
    "connected-react-router": "^6.2.2",
    "history": "^4.7.2",
    "react": "^16.7.0",
    "react-app-polyfill": "0.2.0",
    "react-dom": "^16.7.0",
    "react-redux": "^6.0.0",
    "react-router": "^4.3.1",
    "react-router-dom": "^4.3.1",
    "react-scripts": "2.1.3",
    "redux": "^4.0.1",
    "redux-actions": "2.6.4",
    "redux-logger": "^3.0.6",
    "redux-saga": "1.0.0",
    "semantic-ui-css": "^2.4.1",
    "semantic-ui-react": "^0.84.0"
  },
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0