This repository has been archived by the owner on Aug 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
69 lines (69 loc) · 1.9 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
{
"name": "storybook-addon-emotion-theme",
"version": "2.1.1",
"description": "storybook addon with emotion theme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"example": "start-storybook -p 6006",
"clean": "rimraf dist",
"build": "npm run clean && tsc -p .",
"pretest": "tslint -p .",
"test": "rimraf dist && jest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JumboInteractiveLimited/storybook-addon-emotion-theme.git"
},
"author": "Patrick Gordon <[email protected]> (https://patrick-gordon.com/)",
"bugs": {
"url": "https://github.com/JumboInteractiveLimited/storybook-addon-emotion-theme/issues"
},
"homepage": "https://github.com/JumboInteractiveLimited/storybook-addon-emotion-theme#readme",
"license": "MIT",
"dependencies": {
"immutable": "^3.8.2",
"recompose": "^0.27.1"
},
"devDependencies": {
"@emotion/core": "^10.0.5",
"@emotion/styled": "^10.0.5",
"@storybook/addons": "^4.0.0",
"@storybook/react": "^4.0.2",
"@types/enzyme": "^3.1.13",
"@types/jest": "^23.3.2",
"@types/node": "^10.3.3",
"@types/react": "^16.3.17",
"@types/recompose": "^0.26.1",
"@types/sinon": "^5.0.2",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-loader": "7.1.5",
"emotion-theming": "^10.0.5",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"jest": "^23.5.0",
"react": "^16.3.0",
"react-dom": "^16.5.0",
"rimraf": "^2.6.2",
"sinon": "^6.2.0",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"peerDependencies": {
"@storybook/addons": "4.0.12",
"emotion-theming": "^10.0.0",
"react": "^16.3.0"
},
"keywords": [
"storybook",
"emotion",
"addon",
"theme",
"react",
"typescript"
]
}