Summary: Currently, it fails with ``` Uncaught Error: Unsupported Bridge operation "0" ``` Closes #3197 Fixed by following the guide at https://gist.github.com/bvaughn/4bc90775530873fdf8e7ade4a039e579?permalink_comment_id=4056267#flipper Reviewed By: lblasa Differential Revision: D34721401 fbshipit-source-id: adc4d46a0dbdd67b86753fe1ac0deb3046113b6d
36 lines
846 B
JSON
36 lines
846 B
JSON
{
|
|
"name": "ReactNativeFlipperExample",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"android": "react-native run-android",
|
|
"ios": "react-native run-ios",
|
|
"start": "react-native start",
|
|
"test": "jest",
|
|
"use-local-deps": "relative-deps"
|
|
},
|
|
"dependencies": {
|
|
"react": "^17.0.2",
|
|
"react-native": "^0.67.2",
|
|
"react-native-flipper": "^0.137.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.17.5",
|
|
"@babel/runtime": "^7.17.2",
|
|
"babel-jest": "^27.5.1",
|
|
"jest": "^27.5.1",
|
|
"metro-react-native-babel-preset": "^0.69.0",
|
|
"react-test-renderer": "17.0.2",
|
|
"relative-deps": "^1.0.7"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
},
|
|
"relativeDependencies": {
|
|
"react-native-flipper": "../react-native-flipper"
|
|
},
|
|
"resolutions": {
|
|
"react-devtools-core": "4.23.0"
|
|
}
|
|
}
|