Files
react-native/packages/helloworld/package.json
T
Blake Friedman 9744fa9283 cli support to bundle, build & upload (#44722)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/44722

Add support for bundling, building and uploading on iOS.  I've verified these locally and will enable on CircleCI to validate.

Changelog: [Internal]

Reviewed By: cipolleschi

Differential Revision: D57915365

fbshipit-source-id: 1e73918b31f70d337de4d3aee934c8acf88c86d0
2024-06-06 07:06:29 -07:00

39 lines
1007 B
JSON

{
"name": "helloworld",
"version": "0.75.0-main",
"private": true,
"scripts": {
"bootstrap": "node ./cli.js bootstrap",
"build": "node ./cli.js build",
"bundle": "node ./cli.js bundle ",
"install-and-run": "node ./cli.js install-and-run",
"launch": "node ./scripts/metro.js",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"react": "18.3.1",
"react-native": "1000.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.75.0-main",
"@react-native/core-cli-utils": "0.75.0-main",
"@react-native/eslint-config": "0.75.0-main",
"@react-native/metro-config": "0.75.0-main",
"babel-jest": "^29.6.3",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"listr2": "^8.2.1",
"react-test-renderer": "18.3.1",
"rxjs": "^7.8.1"
},
"engines": {
"node": ">=18"
}
}