-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.07 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.07 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
{
"name": "rn-cs-example",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"androidd": "react-native run-android --deviceId \"M95QACPC6LD49\"",
"ios": "react-native run-ios",
"iosd": "react-native run-ios --device \"Asterisk’s iPhone\"",
"start": "react-native start",
"startr": "react-native start --reset-cache",
"startr8888": "react-native start --reset-cache --port 8888",
"build:android": "cd android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a",
"build:ios": "cd ios && xcodebuild -workspace ChatSdkExample.xcworkspace -scheme ChatSdkExample -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",
"eas-build-pre-install": "sh ../scripts/eas-build-pre-install.sh",
"eas-build-post-install": "sh ../scripts/eas-build-post-install.sh",
"postinstall": "patch-package"
},
"dependencies": {
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@types/react-native-modal-dropdown": "^1.0.5",
"react": "18.2.0",
"react-native": "0.72.17",
"react-native-document-picker": "^9.3.1",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "~2.13.0",
"react-native-image-picker": "^7.1.2",
"react-native-modal-dropdown": "^1.0.2",
"react-native-safe-area-context": "~4.7.0",
"react-native-screens": "~3.25.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/metro-config": "^0.72.12",
"babel-plugin-module-resolver": "^5.0.0",
"metro-react-native-babel-preset": "^0.76.9",
"patch-package": "^8.0.0",
"pod-install": "^0.1.0"
},
"engines": {
"node": ">=16"
},
"eslintConfig": {
"root": false,
"rules": {
"react-native/no-inline-styles": 0
}
}
}