-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.21 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.21 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
{
"name": "example",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android --no-packager",
"build:android": "react-native bundle --entry-file index.ts --platform android --dev true --bundle-output dist/main.android.jsbundle --assets-dest dist/res",
"build:ios": "react-native bundle --entry-file index.ts --platform ios --dev true --bundle-output dist/main.ios.jsbundle --assets-dest dist",
"build:macos": "react-native bundle --entry-file index.ts --platform macos --dev true --bundle-output dist/main.macos.jsbundle --assets-dest dist",
"build:visionos": "react-native bundle --entry-file index.ts --platform ios --dev true --bundle-output dist/main.visionos.jsbundle --assets-dest dist",
"build:windows": "react-native bundle --entry-file index.ts --platform windows --dev true --bundle-output dist/main.windows.bundle --assets-dest dist",
"ci:windows": "react-native run-windows --logging --no-packager --no-launch --no-deploy --msbuildprops UseBundle=false --no-telemetry",
"clean": "yarn workspace react-native-test-app clean",
"ios": "react-native run-ios --no-packager",
"macos": "react-native run-macos --no-packager --scheme Example",
"set-react-version": "yarn workspace react-native-test-app set-react-version",
"start": "react-native start",
"visionos": "react-native run-visionos --no-packager",
"windows": "react-native run-windows --no-packager"
},
"dependencies": {
"@callstack/react-native-visionos": "^0.75.0",
"@react-native-webapis/web-storage": "^0.4.0",
"react": "^18.2.0",
"react-native": "^0.75.0",
"react-native-macos": "^0.75.2",
"react-native-windows": "^0.75.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@react-native-community/cli": "^14.0.0",
"@react-native/babel-preset": "^0.75.0",
"@react-native/metro-config": "^0.75.0",
"@rnx-kit/metro-config": "^2.0.0",
"@rnx-kit/polyfills": "^0.2.0",
"@rnx-kit/tsconfig": "^2.0.0",
"@types/react": "~18.3.0",
"appium": "patch:appium@npm%3A2.12.0#~/.yarn/patches/appium-npm-2.11.2-f39bb587af.patch",
"appium-uiautomator2-driver": "^3.0.0",
"appium-xcuitest-driver": "^7.0.0",
"react-native-test-app": "workspace:*",
"webdriverio": "^9.0.0"
},
"eslintConfig": {
"extends": "../.github/eslint.config.js"
},
"rnx-kit": {
"kitType": "app",
"bundle": [
{
"id": "main",
"entryFile": "index.ts",
"assetsDest": "dist",
"targets": [
"android",
"ios",
"macos",
"visionos",
"windows"
],
"platforms": {
"android": {
"bundleOutput": "dist/main.android.jsbundle",
"sourcemapOutput": "dist/main.android.jsbundle.map",
"assetsDest": "dist/res"
},
"ios": {
"bundleOutput": "dist/main.ios.jsbundle",
"sourcemapOutput": "dist/main.ios.jsbundle.map"
},
"macos": {
"bundleOutput": "dist/main.macos.jsbundle",
"sourcemapOutput": "dist/main.macos.jsbundle.map"
},
"visionos": {
"bundleOutput": "dist/main.visionos.jsbundle",
"sourcemapOutput": "dist/main.visionos.jsbundle.map"
},
"windows": {
"bundleOutput": "dist/main.windows.bundle",
"sourcemapOutput": "dist/main.windows.bundle.map"
}
}
}
],
"alignDeps//disabled": {
"//": "This configuration is only used for Viewfinder",
"requirements": [
"react-native@0.75"
],
"capabilities": [
"core-android",
"core-ios",
"core-macos",
"core-windows",
"animation",
"babel-preset-react-native",
"checkbox",
"clipboard",
"datetime-picker",
"filesystem",
"floating-action",
"gestures",
"html",
"masked-view",
"modal",
"navigation/native",
"navigation/stack",
"netinfo",
"popover",
"safe-area",
"screens",
"shimmer",
"sqlite",
"storage",
"svg",
"webview"
]
}
}
}