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.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "@nx/expo",
|
|
"version": "0.0.1",
|
|
"private": false,
|
|
"description": "The Expo Plugin for Nx contains executors and generators for managing and developing an expo application within your workspace. For example, you can directly build for different target platforms as well as generate projects and publish your code.",
|
|
"keywords": [
|
|
"Monorepo",
|
|
"Expo",
|
|
"React",
|
|
"Web",
|
|
"Jest",
|
|
"Native",
|
|
"CLI",
|
|
"Mobile",
|
|
"Testing"
|
|
],
|
|
"homepage": "https://nx.dev",
|
|
"bugs": {
|
|
"url": "https://github.com/nrwl/nx/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nrwl/nx.git",
|
|
"directory": "packages/expo"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Victor Savkin",
|
|
"main": "./index",
|
|
"types": "index.d.ts",
|
|
"dependencies": {
|
|
"@nx/devkit": "file:../devkit",
|
|
"@nx/eslint": "file:../eslint",
|
|
"@nx/jest": "file:../jest",
|
|
"@nx/js": "file:../js",
|
|
"@nx/react": "file:../react",
|
|
"@nx/web": "file:../web",
|
|
"@nx/webpack": "file:../webpack",
|
|
"enhanced-resolve": "^5.8.3",
|
|
"metro-config": "~0.80.4",
|
|
"metro-resolver": "~0.80.4",
|
|
"picocolors": "^1.1.0",
|
|
"tsconfig-paths": "^4.1.2",
|
|
"tslib": "^2.3.0"
|
|
},
|
|
"executors": "./executors.json",
|
|
"ng-update": {
|
|
"requirements": {},
|
|
"migrations": "./migrations.json"
|
|
},
|
|
"generators": "./generators.json",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|