-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.58 KB
/
package.json
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
{
"name": "react-native-guided-access-mode-example",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "npx react-native run-android",
"ios": "npx react-native run-ios --device",
"data": "rm -rf ~/Library/Developer/Xcode/DerivedData && yarn clean",
"watch": "watchman watch-del './' ; watchman watch-project './'",
"pod": "cd ios && pod install --repo-update --verbose && cd ..",
"clean": "rm -r -f node_modules ios/Podfile.lock ios/Pods && yarn && yarn pod && yarn watch && yarn start",
"start": "yarn rndebugger && npx react-native start --reset-cache",
"rndebugger": "open 'rndebugger://set-debugger-loc?host=localhost&port=8081'",
"build:android": "cd android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a",
"build:ios": "cd ios && xcodebuild -workspace GuidedAccessModeExample.xcworkspace -scheme GuidedAccessModeExample -configuration Debug -sdk iphonesimulator CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ GCC_OPTIMIZATION_LEVEL=0 GCC_PRECOMPILE_PREFIX_HEADER=YES ASSETCATALOG_COMPILER_OPTIMIZATION=time DEBUG_INFORMATION_FORMAT=dwarf COMPILER_INDEX_STORE_ENABLE=NO"
},
"dependencies": {
"react": "18.2.0",
"react-native": "0.74.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.74.84",
"@react-native/metro-config": "0.74.84",
"@react-native/typescript-config": "0.74.84",
"babel-plugin-module-resolver": "^5.0.0"
},
"engines": {
"node": ">=18"
}
}