forked from mayteio/mui-bottom-sheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.07 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
{
"version": "1.0.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests --env=jest-environment-jsdom-sixteen",
"lint": "tsdx lint",
"prepare": "tsdx build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "mui-bottom-sheet",
"keywords": [
"material design",
"mui",
"bottom sheet",
"action sheet",
"bottom drawer",
"sheet",
"react",
"react-spring",
"react-use-gesture",
"google maps"
],
"author": "Harley Alexander",
"module": "dist/mui-bottom-sheet.esm.js",
"devDependencies": {
"@babel/core": "^7.9.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-docs": "^5.3.18",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.1.5",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"babel-loader": "^8.1.0",
"husky": "^4.2.3",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"ts-loader": "^6.2.2",
"tsdx": "^0.13.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"jest": {
"setupFilesAfterEnv": [
"./test/jest.setup.ts"
]
},
"dependencies": {
"@juggle/resize-observer": "^3.1.3",
"@storybook/addon-knobs": "^5.3.18",
"jest-environment-jsdom-sixteen": "^1.0.3",
"react-spring": "^9.0.0-beta.34",
"react-use-gesture": "^7.0.8",
"react-use-measure": "^2.0.0"
}
}