-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "react-native-bubble-tabbar",
"version": "0.1.0",
"description": "Bubble Tab Bar Component for React Native which supports React Navigation V5 and TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"repository": "https://github.com/junhoyeo/react-navigation-v5-bubble-tab-bar",
"author": {
"name": "JunhoYeo",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "tsc"
},
"peerDependencies": {
"react": "^17.0.1",
"react-native": "^0.64.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@fortawesome/fontawesome-common-types": "^0.2.35",
"@types/react": "^17.0.3",
"@types/react-native": "^0.63.52",
"@types/styled-components": "^5.1.9",
"install-peers-cli": "^2.2.0",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@react-navigation/bottom-tabs": "^5.11.8",
"@types/styled-components-react-native": "^5.1.1",
"react-native-animation-hooks": "^1.0.1"
},
"files": [
"lib",
"README.md",
"LICENSE"
]
}