-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.64 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.64 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
{
"name": "@fluentui-react-native/e2e-testing",
"version": "1.40.8",
"description": "Package containing E2E testing specs",
"license": "MIT",
"scripts": {
"build": "fluentui-scripts build",
"lint": "fluentui-scripts eslint",
"e2etest:android": "wdio run wdio.conf.android.js",
"e2etest:ios": "wdio run wdio.conf.ios.js",
"e2etest:macos": "wdio run wdio.conf.macos.js",
"e2etest:win32": "wdio run wdio.conf.win32.js",
"e2etest:windows": "rimraf errorShots reports && wdio run wdio.conf.windows.js"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui-react-native.git",
"directory": "apps/E2E"
},
"files": [
"src/**/*",
"dist/*"
],
"dependencies": {
"react": "19.0.0",
"react-native": "^0.78.0",
"react-native-macos": "^0.78.0",
"react-native-windows": "^0.78.0"
},
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/runtime": "^7.8.0",
"@fluentui-react-native/eslint-config-rules": "workspace:*",
"@fluentui-react-native/focus-zone": "workspace:*",
"@fluentui-react-native/scripts": "workspace:*",
"@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/metro-config": "^2.0.0",
"@types/jasmine": "5.1.4",
"@types/node": "^22.2.0",
"@types/react": "~19.0.0",
"@wdio/appium-service": "^9.12.6",
"@wdio/cli": "^9.12.6",
"@wdio/globals": "^9.12.6",
"@wdio/jasmine-framework": "^9.12.6",
"@wdio/json-reporter": "^9.12.6",
"@wdio/local-runner": "^9.12.6",
"@wdio/spec-reporter": "^9.12.6",
"appium": "^2.11.2",
"appium-mac2-driver": "^1.12.0",
"appium-uiautomator2-driver": "^3.0.5",
"appium-windows-driver": "^2.12.18",
"appium-xcuitest-driver": "^7.9.1",
"metro-config": "^0.81.3",
"rimraf": "^5.0.1",
"ts-node": "^10.7.0",
"typescript": "4.9.4",
"webdriverio": "^9.12.6"
},
"installConfig": {
"hoistingLimits": "dependencies"
},
"rnx-kit": {
"kitType": "app",
"alignDeps": {
"presets": [
"@fluentui-react-native/scripts/align-deps-preset.js",
"microsoft/react-native"
],
"requirements": [
"react-native@0.78"
],
"capabilities": [
"babel-preset-react-native",
"core",
"core-macos",
"core-windows",
"metro-config",
"metro-react-native-babel-transformer",
"react"
]
}
}
}