-
Notifications
You must be signed in to change notification settings - Fork 324
/
package.json
77 lines (77 loc) · 3.15 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
{
"name": "sampleapp",
"version": "2.0.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 . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --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.2",
"@op-engineering/op-sqlite": "^9.3.0",
"@react-native-async-storage/async-storage": "^1.21.0",
"@react-native-camera-roll/camera-roll": "^7.8.4",
"@react-native-community/netinfo": "^11.3.2",
"@react-native-firebase/app": "21.6.0",
"@react-native-firebase/messaging": "21.6.0",
"@react-navigation/bottom-tabs": "6.6.0",
"@react-navigation/drawer": "6.7.0",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.4.0",
"react": "18.3.1",
"react-native": "^0.76.1",
"react-native-audio-recorder-player": "^3.6.12",
"react-native-blob-util": "^0.19.11",
"react-native-document-picker": "^9.3.1",
"react-native-fast-image": "^8.6.3",
"react-native-gesture-handler": "^2.18.1",
"react-native-haptic-feedback": "^2.3.3",
"react-native-reanimated": "^3.16.0",
"react-native-safe-area-context": "^4.14.0",
"react-native-screens": "^3.34.0",
"react-native-share": "^11.0.4",
"react-native-svg": "^15.8.0",
"react-native-video": "^6.7.0",
"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.0.0",
"@react-native-community/cli-platform-android": "15.0.0",
"@react-native-community/cli-platform-ios": "15.0.0",
"@react-native/babel-preset": "0.76.1",
"@react-native/eslint-config": "0.76.1",
"@react-native/metro-config": "0.76.1",
"@react-native/typescript-config": "0.76.1",
"@rnx-kit/metro-config": "^1.3.14",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "18.0.0",
"babel-jest": "29.6.3",
"eslint": "^8.19.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"react-test-renderer": "18.3.1",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}