-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.42 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": "react-native-bottom-modal-scrollable",
"version": "0.7.2",
"description": "A Bottom Modal component for React Native that can be dragged to the maximum height and without releasing the finger off the screen scroll its content to provide a smooth user experience. Fully customizable and compatible with Android & iOS. Built using react-native-reanimated 2.",
"main": "./src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version",
"prepare": "husky install",
"commit": "git-cz"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": ">=1.10.1",
"react-native-reanimated": ">=2.2.0"
},
"dependencies": {
"react-native-gesture-handler": "2.4.2",
"react-native-reanimated": "^2.4.1",
"styled-components": "^5.0.1",
"use-debounce": "^8.0.1"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.3",
"@types/react": "^16.9.46",
"@types/react-native": "^0.63.4",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"babel-eslint": "10.1.0",
"eslint": "7.6.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.5",
"eslint-plugin-standard": "4.0.1",
"husky": "^8.0.1",
"standard-version": "^9.5.0",
"typescript": "3.9.7"
},
"keywords": [
"react-native",
"modal",
"bottom-modal",
"animated",
"scrollable",
"bottom",
"smooth",
"react",
"native",
"flatlist",
"scrollview",
"scroll",
"scrolling",
"drag",
"dragging",
"gesture",
"reanimated",
"snap",
"android",
"ios",
"snapping",
"component"
],
"license": "MIT",
"repository": "https://github.com/Nazort/react-native-bottom-modal-scrollable",
"author": "Roman Cirier <[email protected]> (https://github.com/Nazort)",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"hidden": false,
"section": "Refactors"
}
]
}
}