-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
97 lines (97 loc) · 3.31 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
{
"name": "@sendbird/uikit-sample-cli",
"version": "3.8.3",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"adb:reverse": "adb start-server && sh ./scripts/adb-reverse.sh",
"get-stories": "sb-rn-get-stories",
"storybook-watcher": "sb-rn-watcher"
},
"dependencies": {
"@bam.tech/react-native-image-resizer": "^3.0.10",
"@faker-js/faker": "^7.6.0",
"@notifee/react-native": "^5.3.0",
"@react-native-async-storage/async-storage": "^1.17.6",
"@react-native-camera-roll/camera-roll": "^7.8.1",
"@react-native-clipboard/clipboard": "^1.14.1",
"@react-native-community/datetimepicker": "^5.1.0",
"@react-native-community/netinfo": "^11.3.2",
"@react-native-community/push-notification-ios": "^1.11.0",
"@react-native-community/slider": "^4.2.0",
"@react-native-firebase/app": "^14.7.0",
"@react-native-firebase/messaging": "^14.7.0",
"@react-navigation/bottom-tabs": "^6.6.0",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.10.0",
"@sendbird/chat": "^4.16.0",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-controls": "^6.4.19",
"@storybook/addon-ondevice-actions": "^6.0.1-alpha.7",
"@storybook/addon-ondevice-backgrounds": "^6.0.1-alpha.7",
"@storybook/addon-ondevice-controls": "^6.0.1-alpha.7",
"@storybook/addon-ondevice-notes": "^6.0.1-alpha.7",
"@storybook/react-native": "^6.0.1-alpha.7",
"fbjs": "^3.0.4",
"react": "18.2.0",
"react-native": "0.74.3",
"react-native-audio-recorder-player": "^3.6.10",
"react-native-create-thumbnail": "^2.0.0",
"react-native-document-picker": "^9.3.0",
"react-native-fast-image": "^8.6.3",
"react-native-file-access": "^3.1.0",
"react-native-image-picker": "^7.1.2",
"react-native-mmkv": "^2.12.2",
"react-native-permissions": "^3.10.1",
"react-native-safe-area-context": "^4.10.8",
"react-native-screens": "^3.32.0",
"react-native-touch-reload": "sendbird/react-native-touch-reload",
"react-native-video": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^2.0.0",
"@react-native/babel-preset": "0.74.85",
"@react-native/eslint-config": "0.74.85",
"@react-native/metro-config": "0.74.85",
"@react-native/typescript-config": "0.74.85",
"@types/jest": "^29.4.0",
"@types/react": "^18.2.6",
"@types/react-native": "*",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"babel-jest": "^29.6.3",
"babel-loader": "^8.2.3",
"eslint": "^8.52.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-dom": "18.2.0",
"react-native-monorepo-tools": "^1.1.4",
"react-test-renderer": "18.3.1",
"typescript": "5.2.2"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"@sendbird/([^/]+)": "<rootDir>/../packages/$1/src"
}
},
"engines": {
"node": ">=18"
}
}