forked from flyerhq/react-native-chat-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.51 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@flyerhq/react-native-chat-ui",
"version": "1.4.3",
"description": "Actively maintained, community-driven chat UI implementation with an optional Firebase BaaS.",
"homepage": "https://flyer.chat",
"repository": {
"type": "git",
"url": "https://github.com/flyerhq/react-native-chat-ui.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Oleksandr Demchenko <[email protected]>",
"contributors": [
"Vitalii Danylov <[email protected]>",
"Volodymyr Smolianinov <[email protected]>"
],
"license": "Apache-2.0",
"keywords": [
"chat",
"ui",
"react-native",
"react-native-component",
"ios",
"android",
"typescript"
],
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"compile": "rm -rf lib && tsc -p . && copyup src/assets/*.png lib",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "npm run compile",
"test": "jest",
"type-coverage": "type-coverage"
},
"dependencies": {
"@flyerhq/react-native-keyboard-accessory-view": "github:ajp8164/react-native-keyboard-accessory-view",
"@flyerhq/react-native-link-preview": "github:ajp8164/react-native-link-preview",
"@tsconfig/react-native": "^3.0.0",
"@types/react-native-typing-animation": "^0.1.0",
"dayjs": "^1.11.7",
"lodash": "^4.17.21",
"react-native-file-viewer": "^2.1.5",
"react-native-image-viewing": "^0.2.2",
"react-native-media-console": "^2.0.6",
"react-native-parsed-text": "^0.0.22",
"react-native-reanimated": "^3.3.0",
"react-native-sensors": "^7.3.6",
"react-native-typing-animation": "^0.1.7",
"react-native-video": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/runtime": "^7.21.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/react-native": "^12.0.1",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.195",
"@types/react-native": "^0.71.6",
"@types/react-native-video": "^5.0.14",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.5.0",
"copyfiles": "^2.4.1",
"eslint": "^8.38.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"metro-react-native-babel-preset": "^0.76.2",
"react": "^18.2.0",
"react-native": "^0.71.7",
"react-native-safe-area-context": "^4.5.1",
"react-test-renderer": "^18.2.0",
"type-coverage": "^2.25.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!**/index.{ts,tsx}",
"!**/styles.{ts,tsx}",
"!**/types.{ts,tsx}",
"!**/*.d.ts",
"!**/ImageView.android.ts",
"!**/ImageView.ios.ts",
"!**/ImageView.tsx"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"preset": "react-native",
"setupFiles": [
"./jest/setup.ts"
],
"transformIgnorePatterns": [
"node_modules/(?!(@flyerhq|@react-native|react-native))"
]
},
"typeCoverage": {
"cache": true,
"ignoreCatch": true,
"ignoreNonNullAssertion": true,
"ignoreUnread": true,
"is": 100,
"showRelativePath": true,
"strict": true
}
}