-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "material-ui-fullscreen-dialog",
"version": "2.0.0-alpha.1",
"description": "A fullscreen dialog for Material-UI.",
"main": "lib/FullscreenDialog.js",
"scripts": {
"prebuild": "rm -rf lib",
"build": "babel src -d lib --copy-files",
"test": "standard",
"lint": "standard",
"prepublish": "babel src -d lib",
"storybook": "start-storybook -p 6006"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamWertarbyte/material-ui-fullscreen-dialog.git"
},
"keywords": [
"react",
"material-ui",
"dialog",
"mobile"
],
"author": "Wertarbyte <[email protected]> (https://wertarbyte.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeamWertarbyte/material-ui-fullscreen-dialog/issues"
},
"homepage": "https://github.com/TeamWertarbyte/material-ui-fullscreen-dialog#readme",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@material-ui/core": "^4.11.0",
"@storybook/addon-actions": "^3.2.17",
"@storybook/react": "^3.4.2",
"babel-eslint": "^10.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-transition-group": "^2.3.1",
"standard": "^14.3.4"
},
"peerDependencies": {
"@material-ui/core": "^4.0.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-transition-group": "^2.3.1"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"standard": {
"parser": "babel-eslint"
}
}