-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.19 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 4.19 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
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@fluentui-react-native/e2e-testing",
"version": "0.1.0",
"private": true,
"description": "Package containing E2E testing specs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui-react-native.git",
"directory": "apps/E2E"
},
"files": [
"src/**/*",
"dist/*"
],
"main": "lib-commonjs/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib-commonjs/index.js",
"default": "./src/index.ts"
}
},
"scripts": {
"build": "fluentui-scripts build",
"build-cjs": "tsgo --outDir lib-commonjs",
"build-core": "tsgo --outDir lib --module esnext --moduleResolution bundler",
"e2eprep:android": "cross-env APPIUM_HOME=.appium yarn exec appium driver install uiautomator2",
"e2eprep:ios": "cross-env APPIUM_HOME=.appium yarn exec appium driver install xcuitest",
"e2eprep:macos": "cross-env APPIUM_HOME=.appium yarn exec appium driver install mac2",
"e2eprep:win32": "cross-env APPIUM_HOME=.appium yarn exec appium driver install windows",
"e2eprep:windows": "cross-env APPIUM_HOME=.appium yarn exec appium driver install windows",
"e2etest:android": "cross-env APPIUM_HOME=.appium wdio run wdio.conf.android.js",
"e2etest:ios": "cross-env APPIUM_HOME=.appium wdio run wdio.conf.ios.js",
"e2etest:macos": "cross-env APPIUM_HOME=.appium wdio run wdio.conf.macos.js",
"e2etest:win32": "cross-env APPIUM_HOME=.appium wdio run wdio.conf.win32.js",
"e2etest:windows": "rimraf errorShots reports && cross-env APPIUM_HOME=.appium wdio run wdio.conf.windows.js",
"lint": "fluentui-scripts lint",
"lint-package": "fluentui-scripts lint-package"
},
"dependencies": {
"@office-iss/rex-win32": "0.73.11-devmain.16.0.17615.15030"
},
"devDependencies": {
"@babel/core": "catalog:",
"@babel/runtime": "catalog:",
"@fluentui-react-native/focus-zone": "workspace:*",
"@fluentui-react-native/kit-config": "workspace:*",
"@fluentui-react-native/scripts": "workspace:*",
"@office-iss/react-native-win32": "^0.81.0",
"@react-native/metro-babel-transformer": "^0.81.0",
"@rnx-kit/metro-config": "catalog:",
"@types/jasmine": "catalog:",
"@types/node": "catalog:",
"@types/react": "~19.1.4",
"@wdio/appium-service": "catalog:",
"@wdio/cli": "catalog:",
"@wdio/globals": "catalog:",
"@wdio/jasmine-framework": "catalog:",
"@wdio/json-reporter": "catalog:",
"@wdio/local-runner": "catalog:",
"@wdio/logger": "catalog:",
"@wdio/runner": "catalog:",
"@wdio/spec-reporter": "catalog:",
"appium": "catalog:",
"appium-mac2-driver": "catalog:",
"appium-uiautomator2-driver": "catalog:",
"appium-windows-driver": "catalog:",
"appium-xcuitest-driver": "catalog:",
"cross-env": "catalog:",
"expect-webdriverio": "catalog:",
"metro-config": "^0.80.3",
"react": "19.1.4",
"react-native": "^0.81.6",
"react-native-macos": "^0.81.0",
"react-native-windows": "^0.81.0",
"rimraf": "catalog:",
"ts-node": "^10.7.0",
"webdriverio": "catalog:"
},
"peerDependencies": {
"@office-iss/react-native-win32": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0",
"@types/react": "~18.2.0 || ~19.0.0 || ~19.1.4",
"react": "18.2.0 || 19.0.0 || 19.1.4",
"react-native": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.6",
"react-native-macos": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0",
"react-native-windows": "^0.73.0 || ^0.74.0 || ^0.78.0 || ^0.81.0"
},
"peerDependenciesMeta": {
"@office-iss/react-native-win32": {
"optional": true
},
"@types/react": {
"optional": true
},
"react-native-macos": {
"optional": true
},
"react-native-windows": {
"optional": true
}
},
"installConfig": {
"hoistingLimits": "dependencies"
},
"rnx-kit": {
"kitType": "library",
"alignDeps": {
"capabilities": [
"core",
"core-macos",
"core-win32",
"core-windows",
"metro-react-native-babel-transformer",
"react"
]
},
"extends": "@fluentui-react-native/kit-config"
}
}