-
Notifications
You must be signed in to change notification settings - Fork 332
/
Copy pathpackage.json
86 lines (86 loc) · 3.47 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
{
"name": "sampleapp",
"version": "2.5.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/GetStream/stream-chat-react-native.git"
},
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"eslint": "eslint .",
"lint-fix": "eslint . --fix",
"extract-changelog": "FILTER_PATH='examples/SampleApp' TAG_FORMAT=$npm_package_name'@v${version}' node ../../release/extract-changelog.js",
"bootstrap": "yarn install",
"release": "FILTER_PATH='examples/SampleApp' TAG_FORMAT=$npm_package_name'@v${version}' node ../../release/prod",
"release-next": "echo \"Skipping next release for SampleApp\"",
"test:unit": "echo \"Skipping unit tests for SampleApp\"",
"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": {
"@notifee/react-native": "^9.1.8",
"@op-engineering/op-sqlite": "^11.4.7",
"@react-native-async-storage/async-storage": "^2.1.1",
"@react-native-camera-roll/camera-roll": "^7.10.0",
"@react-native-community/netinfo": "^11.4.1",
"@react-native-documents/picker": "^10.1.1",
"@react-native-firebase/app": "21.11.0",
"@react-native-firebase/messaging": "21.11.0",
"@react-navigation/bottom-tabs": "7.2.0",
"@react-navigation/drawer": "7.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-fast-image": "^8.6.3",
"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"
},
"engines": {
"node": ">=18"
}
}