mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
ba03e4e7bb
Summary: We are running into some problems with the spread operator. The solution is to ask for a newer minimum babel version. See https://github.com/babel/babel/issues/10179 Note: this doesn't actually change behavior. When creating a new app a new babel version will already be used. This simply ensures that the minimum version fulfills the requirements. Reviewed By: axe-fb Differential Revision: D16181111 fbshipit-source-id: f5207318b3a7bd9f092c0e64a8065d0f713012da
26 lines
549 B
JSON
26 lines
549 B
JSON
{
|
|
"name": "HelloWorld",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "react-native start",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"react": "16.8.1",
|
|
"react-native": "1000.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.5.0",
|
|
"@babel/runtime": "^7.5.0",
|
|
"@react-native-community/eslint-config": "^0.0.3",
|
|
"babel-jest": "^24.1.0",
|
|
"jest": "^24.1.0",
|
|
"metro-react-native-babel-preset": "^0.51.1",
|
|
"react-test-renderer": "16.8.1"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
}
|
|
}
|