forked from microsoft/rnx-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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",
"build:ci": "nx affected --targets build,test",
"build:ci:all": "nx run-many --targets build,test",
"build-scope": "nx build",
"bundle": "nx run-many --target bundle",
"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",
"format": "nx run-many --target format",
"lint": "nx run-many --target lint",
"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 --targets build,test --output-style stream",
"update-readme": "nx run-many --target update-readme",
"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.2.0",
"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.10",
"@react-native-community/cli-platform-android": "^11.3.10",
"@react-native-community/cli-platform-ios": "^11.3.10",
"@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.12#./.yarn/patches/react-native-macos-npm-0.72.12-61bf1f8441.patch",
"react-native-windows/metro-source-map": "^0.76.8",
"react-native@^0.72.0": "patch:react-native@npm%3A0.72.8#./.yarn/patches/react-native-npm-0.72.8-5af30d9693.patch"
},
"workspaces": {
"packages": [
"incubator/*",
"incubator/@react-native-webapis/*",
"packages/*",
"scripts"
]
},
"prettier": "./.github/prettierrc.json"
}