When I run npm start babel is throwing the following error: ReferenceError: Unknown option: .caller. Check out http://babeljs.io/docs/usage/options/ for more information about options.
My package.json:
{
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"axios": "^0.18.0",
"moment": "^2.20.1",
"prop-types": "latest",
"react": "^16.5",
"react-native": "^0.57",
"react-native-material-textfield": "^0.12.0",
"react-native-material-ui": "^1.30.1",
"react-native-off-canvas-menu": "^0.1.32",
"react-native-pull-refresh": "^1.0.0",
"react-native-size-matters": "^0.1.4",
"react-native-snackbar": "^0.5.3",
"react-native-snap-carousel": "^3.7.5",
"react-native-vector-icons": "^6.0.2",
"react-navigation": "^2.18.0",
"react-redux": "^5.0.6",
"redux": "^4.0.1",
"redux-persist": "^5.5.0",
"redux-thunk": "^2.2.0",
"ree-validate": "^3.0.2"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.42",
"babel-jest": "23.6.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "^0.48.1",
"react-test-renderer": "16.5.2"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"./src/assets/fonts"
]
}
}
I mention that my project is a react native application. I have no peer dependencies errors. I failed to find any conflicts between the different babel dependencies. Thank you for your help.