mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b494ae0703
Summary: The `react-native-codegen` package handles the generation of native code artifacts for modules and components in the new React Native architecture. This change moves the dependency from being an application-level dependency to being a direct dependency of the `react-native` package. Changelog: [General] Move react-native-codegen dependency to react-native root package.json Reviewed By: yungsters Differential Revision: D31129619 fbshipit-source-id: dfa0df589c4dbca70dde6db0208485431e304809
30 lines
677 B
JSON
30 lines
677 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": "17.0.2",
|
|
"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.14.0",
|
|
"jest": "^26.6.3",
|
|
"metro-react-native-babel-preset": "^0.66.2",
|
|
"react-test-renderer": "17.0.2"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
}
|
|
}
|