-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.29 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.29 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
{
"private": true,
"name": "@fluentui-react-native/root",
"version": "0.0.0-dev",
"license": "MIT",
"author": "Jason Morse <jasonmo@microsoft.com>",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui-react-native.git"
},
"scripts": {
"build": "lage build",
"build-tools": "lage build-tools",
"buildci": "lage buildci",
"bump-versions": "beachball bump",
"clean-all": "node ./scripts/clean-all.js",
"docs": "yarn workspace fluent-rn-website start",
"bundle": "lage bundle",
"clean": "lage clean",
"change": "beachball change",
"check-for-changed-files": "cd scripts && yarn fluentui-scripts checkForModifiedFiles",
"checkchange": "beachball check --changehint \"Run 'yarn change' to generate a change file\"",
"align-deps": "rnx-align-deps --no-unmanaged --requirements react-native@0.78",
"depcheck": "yarn align-deps && lage depcheck",
"lint": "lage lint",
"preinstall": "node ./scripts/use-yarn-please.js",
"prettier": "lage prettier",
"prettier-fix": "lage prettier-fix",
"publish:beachball": "beachball publish --bump-deps -m\"📦 applying package updates ***NO_CI***\" --verbose",
"test": "lage test",
"test-links": "markdown-link-check"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.8.0",
"@babel/preset-react": "^7.8.0",
"@babel/preset-typescript": "^7.8.0",
"@react-native-community/cli": "^15.0.1",
"@react-native-community/cli-platform-android": "^15.0.1",
"@react-native-community/cli-platform-ios": "^15.0.1",
"@react-native/babel-preset": "^0.78.0",
"@react-native/metro-babel-transformer": "^0.78.0",
"@react-native/metro-config": "^0.78.0",
"@rnx-kit/align-deps": "^3.0.0",
"babel-jest": "^29.7.0",
"beachball": "^2.20.0",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.27.5",
"lage": "^2.0.0",
"markdown-link-check": "^3.8.7",
"react": "19.0.0",
"react-dom": "~19.0.0",
"react-native": "^0.78.0"
},
"peerDependencies": {
"react": "18.2.0 || ^18.2.0 || 18.3.1 || 19.0.0",
"react-dom": "^18.2.0 || ^18.3.1 || ^19.0.0",
"react-native": "^0.73.0 || ^0.74.0 || ^0.75.0 || ^0.76.0 || ^0.77.0 || ^0.78.0"
},
"workspaces": [
"apps/*",
"packages/**",
"scripts"
],
"resolutions": {
"@types/react": "~19.0.0",
"@warren-ms/react-native-icons/react-native-svg": "^15.4.0",
"axios": "^1.8.2",
"react-native-macos": "patch:react-native-macos@npm%3A0.78.3#~/.yarn/patches/react-native-macos-npm-0.74.30-e4edf98920.patch",
"semver": "^7.5.2",
"tar-fs": "^3.0.9",
"ws": "^8.17.1",
"yaml": "^2.2.2"
},
"rnx-kit": {
"kitType": "library",
"alignDeps": {
"presets": [
"@fluentui-react-native/scripts/align-deps-preset.js",
"microsoft/react-native"
],
"requirements": {
"development": [
"react-native@0.78"
],
"production": [
"react-native@0.73 || 0.74 || 0.75 || 0.76 || 0.77 || 0.78"
]
},
"capabilities": [
"babel-preset-react-native",
"core",
"metro-react-native-babel-transformer",
"react-dom"
]
}
},
"packageManager": "yarn@4.6.0"
}