-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "storybook-addon-styled-component-theme",
"version": "2.0.0",
"description": "storybook addon with styled-components theme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc -p .",
"build:watch": "npm run clean && tsc -p . -w",
"pretest": "tslint -p .",
"test": "rimraf dist && jest",
"prepare": "npm run build"
},
"author": "carlos",
"license": "MIT",
"repository": "echoulen/storybook-addon-styled-component-theme",
"bugs": "https://github.com/echoulen/storybook-addon-styled-component-theme/issues",
"dependencies": {
"immutable": "^3.8.2",
"recompose": "^0.27.1"
},
"devDependencies": {
"@storybook/addons": "^6.1.21",
"@storybook/react": "^6.1.21",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.20",
"@types/node": "^10.3.3",
"@types/react": "^16.14.5",
"@types/recompose": "^0.26.1",
"@types/sinon": "^5.0.2",
"@types/styled-components": "^5.1.8",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.1",
"jest": "^26.6.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^2.6.2",
"sinon": "^6.2.0",
"styled-components": "^5.2.1",
"ts-jest": "^26.5.3",
"tslint": "^5.11.0",
"typescript": "^3.9.2"
},
"peerDependencies": {
"@storybook/addons": ">=6.1.0",
"@storybook/react": ">=5.2.0",
"styled-components": ">=5.2.0"
},
"keywords": [
"storybook",
"styled-component",
"addon",
"theme",
"react",
"typescript",
"storybook-addon",
"style"
],
"storybook": {
"icon": "https://styled-components.com/icon.png",
"displayName": "styled-component theme"
}
}