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
86 lines (86 loc) · 3.07 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.07 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sampleapp",
"version": "0.1.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/GetStream/stream-chat-react-native.git"
},
"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",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"postinstall": "patch-package",
"extract-changelog": "FILTER_PATH='examples/SampleApp' TAG_FORMAT=$npm_package_name'@v${version}' node ../../release/extract-changelog.js",
"bootstrap": "yarn install",
"bootstrap-ci": "yarn install --frozen-lockfile",
"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\""
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.15.6",
"@react-native-community/blur": "3.6.0",
"@react-native-community/cameraroll": "4.0.4",
"@react-native-community/masked-view": "0.1.11",
"@react-native-community/netinfo": "6.0.0",
"@react-navigation/bottom-tabs": "5.11.11",
"@react-navigation/drawer": "5.12.5",
"@react-navigation/native": "5.9.4",
"@react-navigation/stack": "5.14.5",
"@stream-io/flat-list-mvcp": "0.10.1",
"patch-package": "6.4.7",
"react": "17.0.2",
"react-native": "0.65.1",
"react-native-document-picker": "5.0.4",
"react-native-fs": "2.18.0",
"react-native-gesture-handler": "1.10.3",
"react-native-haptic-feedback": "1.11.0",
"react-native-image-crop-picker": "0.36.2",
"react-native-image-resizer": "1.4.5",
"react-native-markdown-package": "1.8.1",
"react-native-reanimated": "2.2.2",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "3.2.0",
"react-native-share": "6.0.1",
"react-native-svg": "12.1.1",
"stream-chat-react-native": "link:../../package/native-package",
"stream-chat-react-native-core": "link:../../package"
},
"devDependencies": {
"@babel/core": "7.13.10",
"@babel/runtime": "7.13.10",
"@react-native-community/eslint-config": "2.0.0",
"@types/jest": "26.0.23",
"@types/react-native": "0.64.5",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"babel-jest": "26.6.3",
"eslint": "7.26.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-typescript-sort-keys": "^1.7.0",
"jest": "26.6.3",
"metro-react-native-babel-preset": "0.66.0",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "17.0.2",
"typescript": "4.2.4"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}