The goal for this exercise is to change the People app to use Redux for maintaining all state.
Hint: you can add an install-dependencies script in package.json:
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"install-dependencies": "npm install redux react-redux"
},
and then run the npm script install-dependencies