rnx-kit/package.json

96 строки
3.1 KiB
JSON

{
"private": true,
"name": "rnx-kit",
"version": "0.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "Jason Morse <jasonmo@microsoft.com>",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rnx-kit"
},
"scripts": {
"build": "nx run-many --target build --all",
"build:ci": "nx affected --target test",
"build:ci:all": "nx run-many --target test --all",
"build-scope": "nx build",
"bundle": "nx run-many --target bundle --all",
"bundle:ci": "nx affected --target bundle",
"change": "changeset add",
"change:check": "changeset status",
"clean": "git clean -dfqx --exclude=.yarn/cache",
"clear-cache": "nx clear-cache",
"depcheck": "nx run-many --target depcheck --all",
"format": "nx run-many --target format --all",
"lint": "nx run-many --target lint --all",
"new-package": "node scripts/new-package.js",
"publish:changesets": "changeset publish",
"rnx-align-deps": "yarn workspace @rnx-kit/align-deps bundle && scripts/rnx-align-deps.js",
"show-affected": "nx show projects --affected",
"test": "nx run-many --target test --output-style stream --all",
"update-readme": "nx run-many --target update-readme --all",
"version:changesets": "changeset version && yarn install --mode update-lockfile"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@types/jest": "^29.2.1",
"@types/node": "^20.0.0",
"eslint": "^8.23.0",
"metro": "^0.76.5",
"nx": "~17.0.2",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^3.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.13"
},
"packageManager": "yarn@3.7.0",
"resolutions": {
"@microsoft/eslint-plugin-sdl/eslint-plugin-react": "^7.33.0",
"@microsoft/eslint-plugin-sdl/eslint-plugin-security": "^1.4.0",
"@react-native-community/cli": "^11.3.6",
"@react-native-community/cli-platform-android": "^11.3.6",
"@react-native-community/cli-platform-ios": "^11.3.6",
"@rnx-kit/react-native-host": "workspace:*",
"@vue/compiler-sfc": "link:./incubator/ignore",
"depcheck/@babel/parser": "~7.23.0",
"depcheck/@babel/traverse": "~7.23.0",
"deprecated-react-native-prop-types/@react-native/normalize-colors": "^0.72.0",
"nx/glob": "^7.1.4",
"nx/minimatch": "^3.0.5",
"nx/semver": "^7.3.5",
"react-native-macos@^0.72.0": "patch:react-native-macos@npm%3A0.72.7#./.yarn/patches/react-native-macos-npm-0.72.7-e19b4d7895.patch",
"react-native-windows/metro-source-map": "^0.76.8",
"react-native@^0.72.0": "patch:react-native@npm%3A0.72.6#./.yarn/patches/react-native-npm-0.72.6-9d6fdd645f.patch"
},
"workspaces": {
"packages": [
"incubator/*",
"incubator/@react-native-webapis/*",
"packages/*",
"scripts"
]
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
],
"trailingComma": "es5",
"overrides": [
{
"files": [
"*.md",
"*.mdx"
],
"options": {
"organizeImportsSkipDestructiveCodeActions": true,
"proseWrap": "always"
}
}
]
}
}