forked from GetStream/stream-chat-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.55 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.55 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
{
"name": "typescriptmessaging",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "npx react-native run-android",
"ios": "npx react-native run-ios",
"start": "npx react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"clean": "watchman watch-del-all && yarn cache clean && rm -rf ios/build && pod cache clean --all && rm -rf android/build && cd android && ./gradlew clean && cd -",
"clean-all": "yarn clean && rm -rf node_modules && rm -rf ios/Pods && rm -rf vendor && bundle install && yarn install && cd ios && bundle exec pod install && cd -"
},
"dependencies": {
"@react-native-camera-roll/camera-roll": "^5.3.1",
"@react-native-clipboard/clipboard": "^1.11.2",
"@react-native-community/masked-view": "0.1.11",
"@react-native-community/netinfo": "9.3.9",
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"@stream-io/flat-list-mvcp": "0.10.3",
"react": "18.2.0",
"react-native": "0.71.7",
"react-native-document-picker": "^9.0.1",
"react-native-fs": "2.20.0",
"react-native-gesture-handler": "~2.9.0",
"react-native-haptic-feedback": "^2.0.3",
"react-native-image-crop-picker": "^0.39.0",
"react-native-image-resizer": "^1.4.5",
"react-native-quick-sqlite": "^8.0.2",
"react-native-reanimated": "~3.1.0",
"react-native-safe-area-context": "^4.5.1",
"react-native-screens": "^3.20.0",
"react-native-share": "^8.2.2",
"react-native-svg": "^13.9.0",
"react-native-video": "6.0.0-alpha.1",
"stream-chat-react-native": "link:../../package/native-package",
"stream-chat-react-native-core": "link:../../package"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "3.2.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "29.2.1",
"@types/react-native-video": "^5.0.13",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"babel-jest": "29.2.1",
"eslint": "8.19.0",
"jest": "29.2.1",
"metro-react-native-babel-preset": "0.73.9",
"prettier": "^2.4.1",
"react-native-flipper": "^0.158.0",
"react-test-renderer": "18.2.0",
"stream-chat-react-native-devtools": "^1.1.0",
"typescript": "4.8.4"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}