Files
react-native/private/helloworld/package.json
Alex Hunt e247be793c Lower minimum Node.js version to 20.19.4 (#52678)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/52678

From partner feedback, there's still appetite to support Node 20.x for the next <1y of life. Lower min version to `20.19.4` (Jul 2025) and widen test matrix in CI.

Changelog:
[General][Breaking] - Our new minimum Node version is Node.js 20 (Overrides #51840)

Reviewed By: cortinico

Differential Revision: D78494491

fbshipit-source-id: c8d9dc6250cb11f8a12ca7e761b65f4a8dae9265
2025-07-18 03:32:13 -07:00

39 lines
1.0 KiB
JSON

{
"name": "helloworld",
"version": "0.0.0",
"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": "19.1.0",
"react-native": "1000.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native/babel-preset": "0.81.0-main",
"@react-native/core-cli-utils": "0.81.0-main",
"@react-native/eslint-config": "0.81.0-main",
"@react-native/metro-config": "0.81.0-main",
"@react-native/typescript-config": "0.81.0-main",
"@types/jest": "^29.5.14",
"commander": "^12.0.0",
"eslint": "^8.19.0",
"jest": "^29.7.0",
"listr2": "^8.2.1",
"react-test-renderer": "19.1.0",
"rxjs": "^7.8.1"
},
"engines": {
"node": ">= 20.19.4"
}
}