I try to run my first react-native app with expo start and below error occur Cannot find module ‘expo/tools/LogReporter’
I find several questions about this problem and follow but none of them can’t solve my problem (I checked all of them serveral times and did works that they said)
Package.json :
{
“main”: “node_modules/expo/AppEntry.js”,
“scripts”: {
“start”: “expo start”,
“android”: “expo start --android”,
“ios”: “expo start --ios”,
“eject”: “expo eject”
},
“dependencies”: {
“expo”: “^32.0.0”,
“react”: “16.5.0”,
“react-native”: “https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz”
},
“devDependencies”: {
“babel-preset-expo”: “^5.0.0”
},
“private”: true,
“name”: “sample”,
“version”: “1.0.0”,
“author”: “Jahanmir”,
“license”: “ISC”,
“description”: “”
}