forked from FaridSafi/react-native-gifted-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.52 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
{
"name": "react-native-gifted-chat",
"version": "0.14.0",
"description": "The most complete chat UI for React Native",
"main": "node_modules/expo/AppEntry.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/FaridSafi/react-native-gifted-chat.git"
},
"keywords": [
"android",
"ios",
"react-native",
"react",
"react-component",
"messenger",
"message",
"chat"
],
"author": "Farid Safi",
"license": "MIT",
"bugs": {
"url": "https://github.com/FaridSafi/react-native-gifted-chat/issues"
},
"homepage": "https://github.com/FaridSafi/react-native-gifted-chat#readme",
"scripts": {
"config:dev": "json -I -f package.json -e 'this.main=\"node_modules/expo/AppEntry.js\"'",
"config:npm": "json -I -f package.json -e 'this.main=\"lib/index.js\"'",
"lint": "tslint --project .",
"tsc": "node_modules/.bin/tsc --noEmit",
"start": "yarn config:dev && expo start",
"start:web": "yarn config:dev && expo start -w --dev",
"build": "rm -rf lib/ && node_modules/.bin/tsc && cp flow-typedefs/*.js.flow lib/",
"test": "TZ=Europe/Paris jest --no-watchman",
"test:watch": "TZ=Europe/Paris jest --watch",
"test:coverage": "TZ=Europe/Paris jest --coverage",
"prepublishOnly": "yarn lint && yarn build && yarn test && yarn config:npm",
"postpublish": "yarn config:dev"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./tests/setup.js"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"testMatch": [
"**/*.test.ts?(x)"
],
"modulePathIgnorePatterns": [
"<rootDir>/example-expo",
"<rootDir>/example-slack-message"
],
"coveragePathIgnorePatterns": [
"./src/__tests__/"
]
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-typescript": "^7.1.0",
"@types/jest": "25.1.2",
"@types/react": "16.9.22",
"@types/react-native": "^0.61.5",
"@types/react-native-communications": "2.2.1",
"@types/react-test-renderer": "16.8.3",
"@types/uuid": "3.4.7",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.7.1",
"babel-preset-expo": "^7.0.0",
"expo": "^36.0.0",
"expo-constants": "~8.0.0",
"expo-image-picker": "~8.0.0",
"expo-location": "~8.0.0",
"expo-permissions": "~8.0.0",
"flow-bin": "^0.118.0",
"husky": "^4.0.2",
"jest-expo": "^36.0.0",
"json": "^9.0.6",
"prettier": "1.18.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz",
"react-native-maps": "0.26.1",
"react-native-nav": "2.0.2",
"react-native-web": "0.12.1",
"react-native-web-maps": "0.2.0",
"react-test-renderer": "16.5.1",
"tslint": "5.12.0",
"tslint-config-prettier": "1.17.0",
"typescript": "3.4.5"
},
"dependencies": {
"@expo/react-native-action-sheet": "3.5.0",
"moment": "^2.19.0",
"prop-types": "15.7.2",
"react-native-communications": "2.2.1",
"react-native-iphone-x-helper": "^1.2.0",
"react-native-lightbox": "^0.8.1",
"react-native-parsed-text": "https://github.com/EvanBacon/react-native-parsed-text.git",
"react-native-typing-animation": "^0.1.7",
"uuid": "3.3.3"
},
"peerDependencies": {
"moment": "*",
"react": "*",
"react-native": "*"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn tsc"
}
}
}