Updating packages in ReactExample

This commit is contained in:
Kenneth Geisshirt 2017-11-17 13:49:39 +01:00 committed by blagoev
parent 66d02b3e4e
commit 92ab314ba5
2 changed files with 25 additions and 24 deletions

View File

@ -832,7 +832,7 @@
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh; shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
}; };
/* End PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */

View File

@ -1,24 +1,25 @@
{ {
"name": "ReactExample", "name": "ReactExample",
"version": "0.0.1", "version": "0.0.1",
"private": true, "private": true,
"scripts": { "scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start", "start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest" "test": "jest"
}, },
"dependencies": { "dependencies": {
"react": "~15.4.0-rc.4", "react": "~16.0.0-beta.5",
"react-native": "0.40.0", "react-native": "0.50.3",
"realm": "file:../.." "react-navigation": "^1.0.0-beta.19",
}, "realm": "file:../.."
"devDependencies": { },
"babel-jest": "18.0.0", "devDependencies": {
"babel-preset-react-native": "1.9.1", "babel-jest": "18.0.0",
"jest": "18.1.0", "babel-preset-react-native": "1.9.1",
"react-test-renderer": "~15.4.0-rc.4", "invariant": "^2.2.2",
"invariant": "^2.2.2" "jest": "18.1.0",
}, "react-test-renderer": "^16.1.1"
"jest": { },
"preset": "react-native" "jest": {
} "preset": "react-native"
} }
}