Files
flipper/react-native/ReactNativeFlipperExample/package.json
Pascal Hartig 2fbd5f6576 Fix node-fetch, node-forge sec vulns (#1530)
Summary:
You know the drill.

Pull Request resolved: https://github.com/facebook/flipper/pull/1530

Test Plan: Checked that `yarn.lock` references the respective new versions.

Reviewed By: nikoant

Differential Revision: D23733338

Pulled By: passy

fbshipit-source-id: abf9812b977542a8b297b88ea16c7c01a062898b
2020-09-17 05:03:27 -07:00

37 lines
905 B
JSON

{
"name": "ReactNativeFlipperExample",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "relative-deps && react-native run-android",
"ios": "relative-deps && react-native run-ios",
"start": "relative-deps && react-native start",
"prepare": "relative-deps",
"test": "jest"
},
"dependencies": {
"react": "^16.13",
"react-native": "^0.62.2",
"react-native-flipper": "^0.56.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/runtime": "^7.10.4",
"babel-jest": "^26.3.0",
"jest": "^26.4.2",
"metro-react-native-babel-preset": "^0.63.0",
"react-test-renderer": "16.11.0",
"relative-deps": "^1.0.0"
},
"jest": {
"preset": "react-native"
},
"relativeDependencies": {
"react-native-flipper": "../react-native-flipper"
},
"resolutions": {
"minimist": "1.2.3",
"node-fetch": "^2.6.1"
}
}