-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.68 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
85
86
87
{
"name": "storybook-prop-variations-plugin",
"version": "1.0.0",
"description": "This plugin cartesian maps all props of a component and creates individual stories for each mapping to quickly allow testing of all props against each other.",
"main": "index.js",
"scripts": {
"test": "test",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/buggedcom/storybook-prop-variations-plugin.git"
},
"keywords": [
"storybook",
"storybook",
"addon",
"props",
"variations",
"prop",
"variations",
"cartesian",
"mapping",
"cartesian",
"testing",
"tests",
"design"
],
"author": "Oliver Lillie",
"license": "MIT",
"bugs": {
"url": "https://github.com/buggedcom/storybook-prop-variations-plugin/issues"
},
"homepage": "https://github.com/buggedcom/storybook-prop-variations-plugin#readme",
"dependencies": {
"lodash.merge": "^4.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"sourcemapped-stacktrace": "^1.1.11",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@storybook/addon-actions": "^7.0.0-beta.45",
"@storybook/addon-essentials": "^7.0.0-beta.45",
"@storybook/addon-interactions": "^7.0.0-beta.45",
"@storybook/addon-links": "^7.0.0-beta.45",
"@storybook/react": "^7.0.0-beta.45",
"@storybook/react-webpack5": "^7.0.0-beta.45",
"@storybook/testing-library": "^0.0.14-next.1",
"@types/lodash.merge": "^4.6.7",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/parser": "^5.51.0",
"babel-loader": "^8.3.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-app": "7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "13.0.0",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.10",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"prettier": "^2.8.4",
"storybook": "^7.0.0-beta.45"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
]
}
}