-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "storybook-addon-matrix",
"version": "1.6.0",
"description": "Storybook addon for rendering components with a matrix of props",
"keywords": [
"react",
"storybook",
"storybook-addon"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Tomoya Otake",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tomoya/storybook-addon-matrix.git"
},
"scripts": {
"prepare": "yarn build",
"build": "rimraf dist && tsc",
"test": "jest",
"lint": "eslint --cache --ext .js,.ts,.tsx ./"
},
"devDependencies": {
"@types/enzyme": "3.10.5",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "26.0.0",
"@typescript-eslint/eslint-plugin": "2.32.0",
"@typescript-eslint/parser": "2.32.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.4.4",
"eslint": "6.8.0",
"eslint-config-airbnb-typescript": "7.2.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.10.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "4.0.0",
"jest": "26.0.1",
"jest-environment-jsdom-fourteen": "1.0.1",
"jest-enzyme": "7.1.2",
"prettier": "2.0.5",
"react-dom": "16.13.1",
"rimraf": "3.0.2",
"ts-jest": "26.0.0",
"typescript": "3.8.3"
},
"dependencies": {
"@emotion/core": "10.0.28",
"@emotion/styled": "10.0.27",
"@storybook/addons": "5.3.18",
"@types/js-combinatorics": "0.5.31",
"@types/styled-system": "5.1.9",
"js-combinatorics": "0.5.5",
"react": "16.13.1",
"styled-system": "5.1.5"
},
"peerDependencies": {
"react": "^16.8.0"
}
}