mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Over in React Native macOS land, I opened https://github.com/microsoft/react-native-macos/pull/2030 to update our mono repo to use Yarn 4. As a side effect, all the `package.json` files are formatted as a side effect of running `yarn install`. So that React Native macOS doesn't maintain this diff (and because they should only be good / no harm), let's upstream the formatting changes. ## Changelog: [INTERNAL] [CHANGED] - Format package.json files in the monorepo Pull Request resolved: https://github.com/facebook/react-native/pull/42256 Test Plan: This change should be a no-op, CI should pass. Reviewed By: cortinico Differential Revision: D52727623 Pulled By: huntie fbshipit-source-id: 67862b16d576b0903abd91e016d7add4c19853dc
26 lines
721 B
JSON
26 lines
721 B
JSON
{
|
|
"name": "@react-native/tester-e2e",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"description": "React Native E2E tester app.",
|
|
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/rn-tester-e2e",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:facebook/react-native.git",
|
|
"directory": "packages/rn-tester-e2e"
|
|
},
|
|
"scripts": {
|
|
"test-e2e": "node ./../../scripts/e2e/run-e2e-tests.js"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.0",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.20.0",
|
|
"@babel/preset-env": "^7.20.0",
|
|
"@types/jest": "^29.5.3",
|
|
"eslint": "^8.19.0",
|
|
"jest": "^29.6.3",
|
|
"webdriverio": "^7.32.0"
|
|
}
|
|
}
|