forked from renatomoor/storybook-tailwind-dark-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.01 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
{
"name": "@meterup/storybook-tailwind-dark-mode",
"version": "1.0.11",
"description": "Toggle stories between light and dark mode using Tailwind",
"keywords": [
"storybook-addons",
"style",
"tailwind",
"darkMode",
"css",
"appearance",
"layout"
],
"repository": {
"type": "git",
"url": "https://github.com/renatomoor/storybook-tailwind-dark-mode"
},
"author": {
"name": "Renato Moor",
"email": "renatomoor1@gmail.com"
},
"license": "MIT",
"main": "dist/preset",
"files": [
"dist/**/*",
"README.md",
"*.js"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "babel ./src --out-dir ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"start": "concurrently \"npm run storybook -- --no-manager-cache --quiet\" \"npm run build -- --watch\"",
"build-storybook": "build-storybook",
"prerelease": "node check-metadata.js",
"release": "npm run build && auto shipit"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/react": "^6.2.9",
"auto": "^10.3.0",
"babel-loader": "^8.1.0",
"chalk": "^2.4.2",
"concurrently": "^5.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"@storybook/addons": "^6.2.9",
"@storybook/api": "^6.2.9",
"@storybook/components": "^6.2.9",
"@storybook/core-events": "^6.2.9",
"@storybook/theming": "^6.2.9",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "Tailwind dark mode",
"supportedFrameworks": [
"react",
"vue",
"angular"
]
}
}