forked from hipstersmoothie/storybook-dark-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.98 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
{
"name": "storybook-dark-mode",
"version": "1.0.8",
"description": "Toggle between light and dark mode in Storybook",
"main": "dist/index.js",
"source": "index.ts",
"files": [
"src",
"dist",
"register.js"
],
"author": {
"name": "Andrew Lisowski",
"email": "[email protected]"
},
"keywords": [
"storybook-addons",
"appearance"
],
"repository": {
"type": "git",
"url": "https://github.com/hipstersmoothie/storybook-dark-mode"
},
"scripts": {
"lint": "eslint --ext .ts --ext .tsx src/**",
"build": "tsc",
"release": "auto shipit"
},
"peerDependencies": {
"@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"
},
"dependencies": {
"fast-deep-equal": "^3.0.0",
"memoizerific": "^1.11.3"
},
"devDependencies": {
"@storybook/addons": "6.0.5",
"@storybook/api": "6.0.5",
"@storybook/components": "6.0.5",
"@storybook/core-events": "6.0.5",
"@storybook/theming": "6.0.5",
"@types/react": "16.9.11",
"@typescript-eslint/eslint-plugin": "2.17.0",
"@typescript-eslint/parser": "2.17.0",
"all-contributors-cli": "^6.14.2",
"auto": "^9.34.1",
"auto-config-hipstersmoothie": "3.0.24",
"eslint": "6.5.0",
"eslint-config-prettier": "6.9.0",
"eslint-config-xo": "0.27.1",
"eslint-config-xo-react": "0.20.0",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "2.2.0",
"husky": "3.1.0",
"jest": "24.9.0",
"lint-staged": "9.5.0",
"prettier": "1.18.2",
"react": "16.11.0",
"react-dom": "16.11.0",
"typescript": "3.7.5"
},
"auto": {
"extends": "hipstersmoothie"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"license": "MIT"
}