135 lines
3.6 KiB
JSON
135 lines
3.6 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": "./dist/index.js",
|
|
"type": "commonjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"!dist/tsconfig.tsbuildinfo",
|
|
"typings",
|
|
"migrations.json",
|
|
"executors.json",
|
|
"generators.json"
|
|
],
|
|
"typesVersions": {
|
|
"*": {
|
|
"plugin": [
|
|
"dist/plugin.d.ts"
|
|
],
|
|
"plugins/with-nx-metro": [
|
|
"dist/plugins/with-nx-metro.d.ts"
|
|
],
|
|
"plugins/metro-resolver": [
|
|
"dist/plugins/metro-resolver.d.ts"
|
|
],
|
|
"plugins/jest/svg-mock": [
|
|
"dist/plugins/jest/svg-mock.d.ts"
|
|
],
|
|
"typings/*.d.ts": [
|
|
"dist/typings/*.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@nx/devkit": "workspace:*",
|
|
"@nx/js": "workspace:*",
|
|
"@nx/eslint": "workspace:*",
|
|
"@nx/react": "workspace:*",
|
|
"@nx/webpack": "workspace:*",
|
|
"ajv": "catalog:",
|
|
"enhanced-resolve": "^5.8.3",
|
|
"ignore": "^7.0.5",
|
|
"picocolors": "catalog:",
|
|
"semver": "catalog:",
|
|
"tinyglobby": "catalog:",
|
|
"tsconfig-paths": "catalog:typescript",
|
|
"tslib": "catalog:typescript"
|
|
},
|
|
"peerDependencies": {
|
|
"react-native": ">=0.83.0 <0.85.0",
|
|
"metro-config": ">= 0.82.0",
|
|
"metro-resolver": ">= 0.82.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react-native": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"nx": "workspace:*"
|
|
},
|
|
"optionalDependencies": {
|
|
"@nx/detox": "workspace:*",
|
|
"@nx/rollup": "workspace:*"
|
|
},
|
|
"executors": "./executors.json",
|
|
"ng-update": {
|
|
"requirements": {},
|
|
"migrations": "./migrations.json",
|
|
"supportsOptionalMigrations": true
|
|
},
|
|
"generators": "./generators.json",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"@nx/nx-source": "./index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./migrations.json": "./migrations.json",
|
|
"./generators.json": "./generators.json",
|
|
"./executors.json": "./executors.json",
|
|
"./plugin": {
|
|
"@nx/nx-source": "./plugin.ts",
|
|
"types": "./dist/plugin.d.ts",
|
|
"default": "./dist/plugin.js"
|
|
},
|
|
"./plugins/with-nx-metro": {
|
|
"@nx/nx-source": "./plugins/with-nx-metro.ts",
|
|
"types": "./dist/plugins/with-nx-metro.d.ts",
|
|
"default": "./dist/plugins/with-nx-metro.js"
|
|
},
|
|
"./plugins/metro-resolver": {
|
|
"@nx/nx-source": "./plugins/metro-resolver.ts",
|
|
"types": "./dist/plugins/metro-resolver.d.ts",
|
|
"default": "./dist/plugins/metro-resolver.js"
|
|
},
|
|
"./plugins/jest/svg-mock": {
|
|
"@nx/nx-source": "./plugins/jest/svg-mock.ts",
|
|
"types": "./dist/plugins/jest/svg-mock.d.ts",
|
|
"default": "./dist/plugins/jest/svg-mock.js"
|
|
},
|
|
"./typings/*.d.ts": {
|
|
"@nx/nx-source": "./typings/*.d.ts",
|
|
"types": "./dist/typings/*.d.ts",
|
|
"default": "./dist/typings/*.d.ts"
|
|
}
|
|
}
|
|
}
|