forked from react-theming/storybook-addon-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
105 lines (105 loc) · 2.89 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
101
102
103
104
105
{
"name": "storybook-addon-material-ui5",
"version": "1.0.1",
"description": "Storybook Addon for Material UI 5 Library",
"main": "dist/index.js",
"types": "storybook-addon-material-ui5.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/alexpanov/storybook-addon-material-ui.git"
},
"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"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alexpanov/storybook-addon-material-ui/issues"
},
"homepage": "https://github.com/alexpanov/storybook-addon-material-ui",
"dependencies": {
"@emotion/core": "^10.0.4",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/styles": "^5.0.1",
"@usulpro/color-picker": "^1.1.3",
"global": "^4.3.2",
"js-beautify": "^1.8.9",
"react-inspector": "^2.3.1"
},
"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",
"@mui/material": "^5.0.4",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addons": "^6.3.12",
"@storybook/react": "^6.3.12",
"babel-eslint": "^8.2.6",
"babel-jest": "^26.0.0",
"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": "^26.0.0",
"prettier": "^1.14.2",
"prop-types": "^15.6.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-scripts": "4.0.3",
"shelljs": "^0.8.2",
"typescript": "^3.7.0"
},
"peerDependencies": {
"@mui/material": "^5.0.0",
"@mui/styles": "^5.0.0",
"@storybook/addons": "^6.3.12",
"@storybook/react": "^6.3.12",
"prop-types": "^15.5.8",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"keywords": [
"storybook-addons",
"style",
"debug",
"storybook",
"react",
"material",
"ui",
"material-ui",
"material-ui-5",
"mui-5",
"mui5",
"addon",
"decorator",
"theme",
"editor",
"customization",
"dark theme",
"light theme",
"storybook-addon"
],
"storybook": {
"displayName": "Material-UI 5",
"supportedFrameworks": [
"React"
],
"icon": "https://raw.githubusercontent.com/alexpanov/storybook-addon-material-ui/master/docs/logos/material-ui.png"
}
}