-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
100 lines (100 loc) · 2.96 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
93
94
95
96
97
98
99
100
{
"name": "storybook-addon-material-ui",
"version": "0.9.0-alpha.24",
"description": "Storybook Addon for Material UI Library",
"main": "dist/index.js",
"types": "storybook-addon-material-ui.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/react-theming/storybook-addon-material-ui.git"
},
"keywords": [
"storybook-addons",
"style",
"debug",
"storybook",
"react",
"material",
"ui",
"material-ui",
"addon",
"decorator",
"theme",
"editor",
"customization",
"dark theme",
"light theme",
"storybook-addon"
],
"storybook": {
"displayName": "Material-UI",
"supportedFrameworks": [
"React"
],
"icon": "https://github.com/react-theming/storybook-addon-material-ui/blob/b0ac1c444bd33212d693af182ac6fed1b069c3db/docs/logos/material-ui.png"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/react-theming/storybook-addon-material-ui/issues"
},
"homepage": "https://github.com/react-theming/storybook-addon-material-ui",
"dependencies": {
"@emotion/core": "^10.0.4",
"@emotion/styled": "^10.0.4",
"global": "^4.3.2",
"js-beautify": "^1.8.9",
"react-inspector": "^2.3.1",
"@usulpro/color-picker": "^1.1.3"
},
"scripts": {
"start": "start-storybook -p 9001",
"build-storybook": "build-storybook -s public",
"deploy": "node .scripts/deployer",
"prepare": "node .scripts/npm-prepare.js",
"postpublish": "node .scripts/npm-postpublish.js"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@storybook/addon-actions": "^5.0.6",
"@storybook/addon-backgrounds": "^5.0.6",
"@storybook/addon-links": "^5.0.6",
"@storybook/addons": "^5.0.6",
"@storybook/react": "^5.0.6",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.2",
"chalk": "^2.4.1",
"emotion-theming": "^10.0.10",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-json": "^1.2.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"gh-pages": "^1.2.0",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"prop-types": "^15.6.2",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2",
"react-scripts": "1.1.5",
"shelljs": "^0.8.2"
},
"peerDependencies": {
"@material-ui/core": "^1.0.0 || ^3.0.0 || ^4.0.0",
"@storybook/addons": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"@storybook/react": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"prop-types": "^15.5.8",
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0"
}
}