mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
2098c89502
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/32756 Changelog: [internal] Add babel-plugin-codegen to babel.config.js for the new architecture support. Reviewed By: motiz88 Differential Revision: D33053216 fbshipit-source-id: 97a1fd9c64972ac4831461b1b62d3a83aa3207cb
34 lines
775 B
JSON
34 lines
775 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/babel-plugin-codegen": "0.0.6",
|
|
"@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.66.2",
|
|
"react-test-renderer": "17.0.2"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
},
|
|
"codegenConfig": {
|
|
"libraries": []
|
|
}
|
|
}
|