fix: upgrade react-native version on basic sample

This commit is contained in:
olivier bouillet
2022-12-17 16:35:37 +01:00
parent 133ede773e
commit 58c719c275
70 changed files with 5163 additions and 4991 deletions

View File

@@ -4,33 +4,33 @@
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "cd ios && pod install && cd .. && react-native run-ios",
"ios": "react-native run-ios",
"windows": "react-native run-windows",
"start": "node node_modules/react-native/local-cli/cli.js start",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@react-native-picker/picker": "^1.9.11",
"babel-plugin-module-resolver": "^4.1.0",
"react": "16.13.1",
"react-native": "0.63.4",
"react": "18.1.0",
"react-native": "0.70.6",
"react-native-video": "../..",
"react-native-windows": "0.63.41"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/react": "^18.0.6",
"@types/react-native": "^0.67.6",
"babel-jest": "^25.1.0",
"eslint": "^6.5.1",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"react-test-renderer": "16.13.1"
"babel-plugin-module-resolver": "^4.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "0.72.3",
"react-test-renderer": "18.1.0"
},
"jest": {
"preset": "react-native"
}
}
}