-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "react-bottom-drawer",
"version": "0.1.1",
"description": "A React Component to build friendly dialogs that slide from the bottom",
"main": "dist",
"scripts": {
"start": "parcel index.html",
"test": "test",
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/fpellicero/react-bottom-drawer.git"
},
"keywords": [
"react",
"ui",
"modal",
"dialog"
],
"author": "Francesc Pellicero <[email protected]> (https://fpellicero.github.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/fpellicero/react-bottom-drawer/issues"
},
"homepage": "https://github.com/fpellicero/react-bottom-drawer#readme",
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@types/body-scroll-lock": "^2.6.1",
"@types/lodash.debounce": "^4.0.6",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-swipeable": "^5.2.0",
"@types/react-transition-group": "^4.2.4",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"typescript": "4.0.2"
},
"dependencies": {
"body-scroll-lock": "^3.0.1",
"clsx": "^1.1.1",
"lodash.debounce": "^4.0.8",
"react-swipeable": "^5.5.1",
"react-transition-group": "^4.3.0"
},
"files": [
"dist"
]
}