-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.88 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.88 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@microsoft/root",
"version": "0.0.1-dev",
"private": true,
"homepage": "https://github.com/microsoft/react-native-test-app",
"license": "MIT",
"author": {
"name": "Microsoft Open Source",
"email": "microsoftopensource@users.noreply.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/react-native-test-app.git"
},
"workspaces": [
".",
"packages/app",
"packages/app/example"
],
"scripts": {
"format": "nx run-many --target format:c,format:js,format:swift",
"format:js": "oxfmt '**/README.md' '**/package.json' '*.{cjs,cts,js,mjs,mts,ts,tsx,yml}' '.github/**/*.json' 'CONTRIBUTING.md' 'nx.json' '!packages/app/package.json'",
"lint": "nx run-many --target lint:js,lint:kt,lint:rb,lint:swift",
"lint:commit": "git log --format='%s' origin/trunk..HEAD | tail -1 | npx @rnx-kit/commitlint-lite@2.0.0",
"lint:js": "oxlint $(git ls-files 'scripts/*.[cm][jt]s' 'scripts/*.[jt]s')",
"release-notes": "node scripts/release-notes.mts",
"show-affected": "node scripts/affected.mts"
},
"devDependencies": {
"@nx/js": "^21.0.0",
"@rnx-kit/lint-lockfile": "^0.1.0",
"@rnx-kit/oxlint-config": "^1.0.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^24.0.0",
"eslint-plugin-wdio": "^9.26.0",
"globals": "^16.5.0",
"js-yaml": "^4.1.0",
"minimatch": "^10.0.0",
"nx": "^21.0.0",
"oxfmt": "^0.35.0",
"oxlint": "^1.51.0",
"typescript": "^5.0.0"
},
"resolutions": {
"@appium/base-driver/axios": "^1.13.6",
"@appium/base-driver/lodash": "^4.17.23",
"@appium/base-driver/lru-cache": "^11.2.6",
"@appium/docutils": "link:./packages/null",
"@appium/logger/lodash": "^4.17.23",
"@appium/logger/lru-cache": "^11.2.6",
"@appium/support/archiver": "~7.0.1",
"@appium/support/axios": "^1.13.6",
"@appium/support/form-data": "~4.0.5",
"@appium/support/glob": "^13.0.6",
"@appium/support/lodash": "^4.17.23",
"@appium/support/semver": "~7.7.4",
"@appium/support/teen_process": "~4.0.10",
"@appium/support/uuid": "~13.0.0",
"@colors/colors": "^1.6.0",
"@microsoft/eslint-plugin-sdl/eslint-plugin-n": "^17.10.3",
"@microsoft/eslint-plugin-sdl/eslint-plugin-react": "^7.37.3",
"@nx/devkit/minimatch": "^9.0.3",
"@react-native-community/cli": "^20.0.0",
"@react-native-community/cli-platform-android": "^20.0.0",
"@react-native-community/cli-platform-apple": "^20.0.0",
"@react-native-community/cli-platform-ios": "^20.0.0",
"@react-native-mac/virtualized-lists": "^0.81.0",
"@react-native/assets-registry": "^0.81.0",
"@react-native/codegen": "^0.81.0",
"@react-native/community-cli-plugin": "^0.81.0",
"@react-native/community-cli-plugin/@react-native-community/cli-server-api": "^20.0.0",
"@react-native/community-cli-plugin/@react-native-community/cli-tools": "^20.0.0",
"@react-native/gradle-plugin": "^0.81.0",
"@react-native/js-polyfills": "^0.81.0",
"@react-native/normalize-colors": "^0.81.0",
"@react-native/virtualized-lists": "^0.81.0",
"appium/ajv": "~8.18.0",
"appium/axios": "^1.13.6",
"appium/lodash": "^4.17.23",
"appium/lru-cache": "^11.2.6",
"appium/semver": "~7.7.4",
"appium/teen_process": "~4.0.10",
"appium/ws": "~8.19.0",
"appium/yaml": "~2.8.2",
"argparse/sprintf-js": "^1.0.2",
"babel-jest": "link:./packages/null",
"compression/bytes": "^3.1.2",
"nx/minimatch": "^9.0.3",
"react-native-windows/metro-source-map": "^0.83.1",
"safe-buffer": "~5.2.1",
"simple-plist/bplist-creator": "~0.1.0",
"simple-plist/bplist-parser": "~0.3.1"
},
"engines": {
"node": ">=22.18"
},
"packageManager": "yarn@4.10.3",
"rnx-kit": {
"lint": {
"lockfile": {
"noDuplicates": {
"packages": [
"#react-native",
"@babel/core"
]
}
}
}
}
}