mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
58c80d4f8d
Summary: Add the `react-native-codegen` source to the `react-native` npm package. Instead of using `react-native-codegen` from npm, the iOS app template will now build the package from source. Doing so removes the need to carefully time `react-native-codegen` npm releases to oss `react-native` releases, as the codegen and the oss release will be cut at the same time. Changelog: [Internal] - Removed react-native-codegen dependency from iOS app template Reviewed By: TheSavior Differential Revision: D24904655 fbshipit-source-id: a07932bc748e2afb9359de584181bcb9dd0810ea
30 lines
675 B
JSON
30 lines
675 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.1",
|
|
"react-native": "1000.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.8.4",
|
|
"@babel/runtime": "^7.8.4",
|
|
"@react-native-community/eslint-config": "^1.1.0",
|
|
"babel-jest": "^25.1.0",
|
|
"eslint": "7.12.0",
|
|
"jest": "^25.1.0",
|
|
"metro-react-native-babel-preset": "^0.64.0",
|
|
"react-test-renderer": "17.0.1"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
}
|
|
}
|