-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "@chatwoot/react-native-widget",
"version": "0.0.21",
"description": "React Native widget for Chatwoot",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"react-native-modal": "^13.0.1"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.23.1",
"react": "*",
"react-native": "*",
"react-native-webview": ">=13.8.6"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@react-native-community/eslint-plugin": "^1.1.0",
"eslint": "^7.21.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"metro-react-native-babel-preset": "^0.65.2",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/chatwoot/chatwoot-react-native-widget.git"
},
"keywords": [
"react-native",
"chatwoot",
"mobile",
"ios",
"android"
],
"bugs": {
"url": "https://github.com/chatwoot/chatwoot-react-native-widget/issues"
},
"homepage": "https://github.com/chatwoot/chatwoot-react-native-widget#readme",
"license": "MIT"
}