-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4.18 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
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": "chatuikitfullexample",
"version": "0.1.0",
"private": true,
"scripts": {
"rn-android": "react-native run-android",
"rn-ios": "react-native run-ios",
"rn-start": "react-native start",
"pods": "pod-install --quiet",
"start": "expo start --dev-client",
"startr": "expo start --dev-client --clear ",
"startr8888": "expo start --dev-client --clear --port 8888",
"startr8889": "expo start --dev-client --clear --port 8889",
"android": "expo run:android",
"androidd": "expo run:android --device \"MX6\"",
"ios": "expo run:ios",
"iosd": "expo run:ios --device=\"iPhone 14 Pro\"",
"bootstrap": "yarn install && yarn pods",
"clean": "del-cli android/build android/app/build ios/build",
"clean-module": "del-cli node_modules",
"gen-env": "node scripts/generate-env.js",
"gen-rename": "node scripts/generate-rename.js",
"doctor": "yarn expo-doctor",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"eas-build-pre-install": "sh ./scripts/eas-build-pre-install.sh",
"eas-build-post-install": "sh ./scripts/eas-build-post-install.sh"
},
"dependencies": {
"@easemob/react-native-create-thumbnail": "^1.6.6",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-camera-roll/camera-roll": "^5.6.0",
"@react-native-clipboard/clipboard": "^1.12.1",
"@react-native-community/blur": "^4.3.2",
"@react-native-community/image-editor": "^4.1.0",
"@react-native-community/slider": "~4.4.2",
"@react-native-firebase/app": "^18.0.0",
"@react-native-firebase/messaging": "^18.0.0",
"@react-navigation/material-bottom-tabs": "^6.2.15",
"@react-navigation/material-top-tabs": "^6.6.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"date-fns": "^2.30.0",
"expo": "~48.0.18",
"expo-constants": "~14.2.1",
"expo-dev-client": "~2.2.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"expo-updates": "~0.16.4",
"pinyin-pro": "^3.18.3",
"pure-uuid": "^1.6.3",
"react": "18.2.0",
"react-native": "0.71.11",
"react-native-agora": "~4.2.0",
"react-native-audio-recorder-player": "^3.5.3",
"react-native-chat-sdk": "1.6.2",
"react-native-device-info": "^10.12.0",
"react-native-document-picker": "^9.0.1",
"react-native-fast-image": "^8.6.3",
"react-native-file-access": "^3.0.4",
"react-native-file-viewer": "^2.1.5",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.20.0",
"react-native-get-random-values": "~1.8.0",
"react-native-image-crop-picker": "^0.40.3",
"react-native-image-picker": "https://github.com/AsteriskZuo/react-native-image-picker.git#dc2ed7b89a9da54fb3d29d0b8c9134a99eb84223",
"react-native-linear-gradient": "^2.8.3",
"react-native-pager-view": "6.1.2",
"react-native-paper": "^5.8.0",
"react-native-permissions": "^3.8.0",
"react-native-reanimated": "~2.14.4",
"react-native-safe-area-context": "^4.11.1",
"react-native-screens": "^3.20.0",
"react-native-tab-view": "^3.5.1",
"react-native-video": "^5.2.1",
"twemoji": "^14.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@types/react-native-video": "^5.0.14",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"del-cli": "^5.0.0",
"expo-doctor": "^1.1.1",
"metro-react-native-babel-preset": "0.73.9",
"typescript": "^4.5.2"
},
"resolutions": {
"@expo/cli": "*"
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"plugins": [
"simple-import-sort"
],
"rules": {
"jest/*": 0,
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"react-native/no-inline-styles": 0,
"@typescript-eslint/no-shadow": "off",
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"babel.config.js"
]
}