We are starting our Graphql implementation lesson! In this lesson, we are starting from a state of our application where we don't have sagas but are leveraging redux for local state storage.
8
stars
271
forks
source link
The new dependencies to enable application works #32
Use this one in package.json { "name": "crwn-clothing", "version": "0.1.0", "proxy": "http://localhost:5000", "private": true, "dependencies": { "firebase": "^9.4.1", "node-sass": "^6.0.1", "react": "^17.0.2", "react-dom": "^17.0.2", "react-redux": "^7.2.4", "react-router-dom": "^5.2.0", "react-scripts": "4.0.3", "react-stripe-checkout": "^2.6.3", "redux": "^4.1.0", "redux-logger": "^3.0.6", "redux-persist": "^6.0.0", "reselect": "^4.0.0" }, "devDependencies": { "react-scripts": "4.0.3" }, "resolutions": { "babel-jest": "24.7.1" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "eslintConfig": { "extends": "react-app" }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } }
import firebase in firebase.js through the below way
import firebase from 'firebase/compat/app'; import 'firebase/compat/firestore'; import 'firebase/compat/auth';
Then it should works fine.