mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
72d949e254
Summary: I'm bumping the Gradle Plugin to the latest stable. That's needed as the newest plugin now specifies a Maven `group` and can leverage implicit dependency substitution. Changelog: [Internal] [Changed] - Bump gradle-plugin to 0.0.4 Reviewed By: ShikaSD Differential Revision: D33530286 fbshipit-source-id: 904f0a6585b468322f611ed82c57cee7025305d7
34 lines
768 B
JSON
34 lines
768 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.32.0",
|
|
"jest": "^26.6.3",
|
|
"metro-react-native-babel-preset": "^0.66.2",
|
|
"react-native-gradle-plugin": "^0.0.4",
|
|
"react-test-renderer": "17.0.2"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
},
|
|
"codegenConfig": {
|
|
"libraries": []
|
|
}
|
|
}
|