-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
94 lines (94 loc) · 2.38 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
{
"name": "storybook-addon-themes",
"version": "6.1.0",
"description": "A storybook addon to switch between different themes for your preview",
"keywords": [
"addon",
"frontend",
"react",
"reactjs",
"storybook",
"storybookjs",
"svelte",
"theme",
"tool",
"ui",
"user interface",
"vue",
"vuejs",
"storybook-addon",
"style"
],
"homepage": "https://github.com/tonai/storybook-addon-themes",
"bugs": {
"url": "https://github.com/tonai/storybook-addon-themes/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tonai/storybook-addon-themes.git"
},
"license": "MIT",
"author": "tonai",
"main": "dist/react.js",
"types": "dist/react.d.ts",
"scripts": {
"prepare": "node ./scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "^6.0.0",
"@storybook/api": "^6.0.0",
"@storybook/components": "^6.0.0",
"@storybook/core-events": "^6.0.0",
"@storybook/theming": "^6.0.0",
"core-js": "^3.6.4",
"global": "^4.4.0",
"memoizerific": "^1.11.3"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-flow": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.1",
"@types/node": "^13.7.0",
"@types/react": "^16.8.14",
"@types/webpack": "^4.41.4",
"@types/webpack-env": "^1.15.1",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-emotion": "^10.0.27",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-require-context-hook": "^1.0.0",
"chalk": "^3.0.0",
"npmlog": "^4.1.2",
"shelljs": "^0.8.3",
"typescript": "~3.7.5"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"svelte": {
"optional": true
},
"vue": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "Theme switcher",
"unsupportedFrameworks": [
"react-native"
]
}
}