-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy pathpackage.json
65 lines (65 loc) · 2.54 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
{
"name": "typescriptmessaging",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"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": {
"@op-engineering/op-sqlite": "^11.4.7",
"@react-native-clipboard/clipboard": "^1.16.2",
"@react-native-community/netinfo": "^11.4.1",
"@react-native-documents/picker": "^10.1.1",
"@react-navigation/native": "^7.0.14",
"@react-navigation/stack": "^7.1.1",
"react": "19.0.0",
"react-native": "^0.78.0",
"react-native-audio-recorder-player": "^3.6.12",
"react-native-blob-util": "^0.21.2",
"react-native-gesture-handler": "^2.24.0",
"react-native-haptic-feedback": "^2.3.3",
"react-native-image-picker": "^8.2.0",
"react-native-reanimated": "^3.17.1",
"react-native-safe-area-context": "^5.2.0",
"react-native-screens": "^4.9.1",
"react-native-share": "^12.0.9",
"react-native-svg": "^15.11.2",
"react-native-video": "^6.10.1",
"stream-chat-react-native": "link:../../package/native-package",
"stream-chat-react-native-core": "link:../../package"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "15.1.3",
"@react-native-community/cli-platform-android": "15.1.3",
"@react-native-community/cli-platform-ios": "15.1.3",
"@react-native/babel-preset": "0.78.0",
"@react-native/eslint-config": "^0.78.0",
"@react-native/eslint-plugin": "^0.78.0",
"@react-native/metro-config": "^0.78.0",
"@react-native/typescript-config": "^0.78.0",
"@rnx-kit/metro-config": "^2.0.1",
"@types/jest": "^29.5.13",
"@types/react": "^19.0.0",
"@types/react-test-renderer": "^19.0.0",
"eslint": "^9.20.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-native": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.1",
"react-test-renderer": "19.0.0",
"typescript": "5.7.3",
"typescript-eslint": "^8.24.1"
}
}