mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
1e0226f933
Summary: Upgrades the React Native CLI to v8 alpha.5. Includes Metro bump to 0.70.2 cc fortmarek kelset cortinico ## Changelog [General] [Changed] - Upgrade RN CLI to v8 alpha.5 Pull Request resolved: https://github.com/facebook/react-native/pull/33755 Test Plan: CI Reviewed By: motiz88, cipolleschi Differential Revision: D36128899 Pulled By: cortinico fbshipit-source-id: b9ce0b4f9fef356141a79be9ccdcabd841d6d1ea
30 lines
678 B
JSON
30 lines
678 B
JSON
{
|
|
"name": "HelloWorld",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"android": "react-native run-android",
|
|
"ios": "react-native run-ios",
|
|
"start": "react-native start",
|
|
"test": "jest",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"react": "18.0.0",
|
|
"react-native": "1000.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.9",
|
|
"@babel/runtime": "^7.12.5",
|
|
"@react-native-community/eslint-config": "^2.0.0",
|
|
"babel-jest": "^26.6.3",
|
|
"eslint": "^7.32.0",
|
|
"jest": "^26.6.3",
|
|
"metro-react-native-babel-preset": "^0.70.3",
|
|
"react-test-renderer": "18.0.0"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
}
|
|
}
|