-
-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
92 lines (92 loc) · 2.59 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
{
"name": "@gorhom/animated-tabbar",
"version": "2.1.2",
"description": "A 60FPS animated tab bar with a variety of cool animation presets.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"files": [
"src",
"lib"
],
"keywords": [
"animated-tabbar",
"react-native",
"ios",
"android",
"react-navigation",
"reanimated",
"tabbar",
"tab-bar",
"bottom-bar"
],
"repository": "https://github.com/gorhom/react-native-animated-tabbar",
"author": "Mo Gorhom (https://gorhom.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gorhom/react-native-animated-tabbar/issues"
},
"homepage": "https://github.com/gorhom/react-native-animated-tabbar#readme",
"scripts": {
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"build": "bob build",
"release": "release-it",
"example": "yarn --cwd example",
"bootstrap": "yarn install && yarn example"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"react-native-redash": "14.2.4"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@react-native-community/bob": "^0.16.2",
"@react-native-community/eslint-config": "^2.0.0",
"@react-native-community/masked-view": "^0.1.10",
"@release-it/conventional-changelog": "^1.1.4",
"@types/react": "^16.9.19",
"@types/react-native": "0.61.10",
"auto-changelog": "^2.2.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"react": "~16.9.0",
"react-native": "~0.61.5",
"react-native-gesture-handler": "^1.8.0",
"react-native-reanimated": "^1.13.1",
"react-native-safe-area-context": "^0.7.3",
"react-native-svg": "^12.1.0",
"release-it": "^13.6.5",
"typescript": "4.0.3"
},
"peerDependencies": {
"@react-navigation/native": ">=5.0.0",
"@react-native-community/masked-view": ">=0.1.10",
"react": "*",
"react-native": "*",
"react-native-gesture-handler": ">=1.6.1",
"react-native-reanimated": ">=1.8.0",
"react-native-safe-area-context": ">=0.7.3",
"react-native-svg": ">=12.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript"
}
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}