Removes the `node-fetch` dependency and uses the native fetch global for the `isPackagerRunning()` check ## Current Behavior - Dependency `node-fetch` is used. ## Expected Behavior - Removed the `node-fetch` dependency. - Used the native `fetch` global. --------- Co-authored-by: Colum Ferry <cferry09@gmail.com>
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "@nx/react-native",
|
|
"version": "0.0.1",
|
|
"private": false,
|
|
"description": "The Nx Plugin for React Native contains generators for managing React Native applications and libraries within an Nx workspace. It provides: \n\n-Integration with libraries such as Jest, Detox, and Storybook.\n-Scaffolding for creating buildable libraries that can be published to npm.\n-Utilities for automatic workspace refactoring.",
|
|
"keywords": [
|
|
"Monorepo",
|
|
"React",
|
|
"Web",
|
|
"Jest",
|
|
"Native",
|
|
"CLI",
|
|
"Mobile"
|
|
],
|
|
"homepage": "https://nx.dev",
|
|
"bugs": {
|
|
"url": "https://github.com/nrwl/nx/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nrwl/nx.git",
|
|
"directory": "packages/react-native"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Victor Savkin",
|
|
"main": "./index",
|
|
"types": "index.d.ts",
|
|
"dependencies": {
|
|
"ajv": "^8.12.0",
|
|
"enhanced-resolve": "^5.8.3",
|
|
"glob": "7.1.4",
|
|
"ignore": "^5.0.4",
|
|
"metro-config": "~0.80.4",
|
|
"metro-resolver": "~0.80.4",
|
|
"picocolors": "^1.1.0",
|
|
"tsconfig-paths": "^4.1.2",
|
|
"tslib": "^2.3.0",
|
|
"@nx/devkit": "file:../devkit",
|
|
"@nx/jest": "file:../jest",
|
|
"@nx/js": "file:../js",
|
|
"@nx/eslint": "file:../eslint",
|
|
"@nx/react": "file:../react",
|
|
"@nx/workspace": "file:../workspace"
|
|
},
|
|
"executors": "./executors.json",
|
|
"ng-update": {
|
|
"requirements": {},
|
|
"migrations": "./migrations.json"
|
|
},
|
|
"generators": "./generators.json",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|