reactjs - cannot get fix react-native-router-flux error even after uninatsalling it -
i using react-native 0.47.1
. playing around different versions of react-native-router-flux
. long story short, messed things , started error while running app. decided uninstall router-flus
start beginning. used ways below:
npm uninstall <name> removes npm uninstall <name> --save npm uninstall <name> --save-dev npm -g uninstall <name> --save
and now, when try
npm list react-native-router-flux
i message:
but still when running project same error shown below
edited:
this package.json:
{ "name": "manager", "version": "0.0.1", "private": true, "scripts": { "start": "node node_modules/react-native/local-cli/cli.js start", "test": "jest" }, "dependencies": { "firebase": "^4.2.0", "react": "16.0.0-alpha.12", "react-native": "0.47.1", "react-redux": "^5.0.5", "redux": "^3.7.2", "redux-thunk": "^2.2.0" }, "devdependencies": { "babel-jest": "20.0.3", "babel-preset-react-native": "2.1.0", "eslint-config-rallycoding": "^3.2.0", "jest": "20.0.4", "react-test-renderer": "16.0.0-alpha.12" }, "jest": { "preset": "react-native" } }
Comments
Post a Comment