-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.19 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
{
"name": "@sergeymyssak/swipeable-bottom-sheet",
"version": "0.0.7",
"description": "Configurable swipeable bottom sheet component (react, nextjs)",
"main": "lib/min.js",
"types": "lib/types/SwipeableBottomSheetContainer.d.ts",
"peerDependencies": {
"react": "16.8.x || 17.x.x",
"react-dom": "16.8.x || 17.x.x"
},
"scripts": {
"lint": "eslint '*src/**/*.{js,ts}' --quiet --fix",
"start": "yarn lint && webpack"
},
"keywords": [
"react",
"nextjs",
"swipe",
"bottom-sheet",
"swipeable-bottom-sheet"
],
"author": {
"name": "Sergey Myssak",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/sergeymyssak/"
},
"contributors": [
{
"name": "Andrey Myssak",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/andreymyssak/"
}
],
"repository": {
"url": "https://github.com/SergeyMyssak/swipeable-bottom-sheet.git",
"type": "git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"homepage": "https://github.com/SergeyMyssak/swipeable-bottom-sheet",
"bugs": "https://github.com/SergeyMyssak/swipeable-bottom-sheet/issues",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
}
},
"dependencies": {
"classnames": "^2.2.6",
"react-swipeable-views": "^0.13.9"
},
"devDependencies": {
"@types/eslint": "^7.2.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/prettier": "^2.0.2",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"css-loader": "^4.2.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"mini-css-extract-plugin": "^0.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.3",
"terser-webpack-plugin": "^4.1.0",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}