Reputation: 11
I have created a new project with React Native version 0.75.4. I have recently done React native setup so all the dependencies are up to date.
I have created project using: npx @react-native-community/cli@latest init projectname
"dependencies": {
"@babel/runtime": "^7.25.7",
"react": "18.3.1",
"react-native": "0.75.4"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@react-native/babel-preset": "0.75.4",
"@react-native/eslint-config": "0.75.4",
"@react-native/metro-config": "0.75.4",
"@react-native/typescript-config": "0.75.4",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-test-renderer": "18.3.1",
"typescript": "5.0.4"
}
I have tried following solutions but none of them work:
npm run start --reset-cache
npm install --save @babel/runtime
I have tried installing @babel/runtime
as both dev and development dependency, but none of it worked.
Upvotes: 1
Views: 288