-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.48 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
{
"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",
"packages/example-*",
"packages/platform-*"
],
"type": "module",
"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.ts",
"rnx-align-deps": "rnx-align-deps --exclude-packages @microsoft/root,@rnx-kit/react-native-template-web,react-native-test-app",
"show-affected": "node scripts/affected.ts"
},
"devDependencies": {
"@nx/js": "^22.0.0",
"@rnx-kit/align-deps": "^4.0.1",
"@rnx-kit/lint-lockfile": "^0.2.0",
"@rnx-kit/oxlint-config": "^1.0.3",
"@rnx-kit/tools-git": "^0.1.1",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.8",
"@types/js-yaml": "^4.0.5",
"@types/node": "catalog:",
"eslint-plugin-wdio": "^9.26.0",
"globals": "^16.5.0",
"js-yaml": "^4.1.0",
"knip": "^6.23.0",
"minimatch": "^10.0.0",
"nx": "^22.0.0",
"oxfmt": "^0.57.0",
"oxlint": "^1.51.0",
"typescript": "^7.0.2"
},
"resolutions": {
"@appium/docutils": "ignore:",
"@colors/colors": "^1.6.0",
"@react-native-windows/cli/@xmldom/xmldom": "^0.9.0",
"@react-native-windows/telemetry/@xmldom/xmldom": "^0.9.0",
"babel-jest": "ignore:",
"node-gyp": "ignore:",
"node-gyp-build": "ignore:",
"oxc-parser": "^0.138.0",
"oxc-resolver": "^11.23.0",
"safe-buffer": "~5.2.1",
"xcode/uuid": "~14.0.0"
},
"engines": {
"node": ">=22.18"
},
"packageManager": "yarn@4.13.0",
"rnx-kit": {
"lint": {
"lockfile": {
"noDuplicates": {
"packages": [
"@babel/core"
]
}
}
}
}
}