mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
abba44de1e
Summary: This is attempt 3 of upgrading React for React Native. Changelog: [Internal] Reviewed By: gaearon Differential Revision: D23162240 fbshipit-source-id: b1f2659481e9f13df8683a34178a46dd64373bf7
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": "16.13.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": "^6.5.1",
|
|
"jest": "^25.1.0",
|
|
"metro-react-native-babel-preset": "^0.62.0",
|
|
"react-test-renderer": "16.13.1"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
}
|
|
}
|