-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 984 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 984 Bytes
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
{
"name": "react-native-hook",
"version": "3.1.0",
"description": "React Native Hooks",
"peerDependencies": {
"@react-navigation/native": ">= 5.7.0",
"react-native-gesture-handler": ">= 1.4.0",
"react-native-lifecycle": ">= 2.1.0",
"react-native-permissions": ">= 2.2.2"
},
"devDependencies": {
"@react-navigation/native": "^6.0.8",
"@types/react": "^17.0.43",
"@types/react-native": "^0.67.3",
"@types/react-native-permissions": "^2.0.0",
"husky": "^4.3.0",
"prettier": "^2.6.1",
"pretty-quick": "^3.1.3",
"react-native-lifecycle": "^2.1.0",
"typescript": "^4.6.3",
"zx": "^6.0.7"
},
"main": "dist/index.js",
"repository": "git@github.com:Chooin/react-native-hook.git",
"author": "Devin.Zhu <chooin@126.com>",
"license": "MIT",
"scripts": {
"build": "scripts/build.mjs"
},
"files": [
"dist",
"src"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}