File tree Expand file tree Collapse file tree 4 files changed +7214
-233
lines changed Expand file tree Collapse file tree 4 files changed +7214
-233
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ "stories" : [
3
+ "../stories/**/*.stories.mdx" ,
4
+ "../stories/**/*.stories.@(js|jsx|ts|tsx)"
5
+ ] ,
6
+ "addons" : [
7
+ "@storybook/addon-links" ,
8
+ "@storybook/addon-essentials"
9
+ ]
10
+ }
Original file line number Diff line number Diff line change
1
+ export const parameters = {
2
+ actions : { argTypesRegex : "^on[A-Z].*" } ,
3
+ controls : {
4
+ matchers : {
5
+ color : / ( b a c k g r o u n d | c o l o r ) $ / i,
6
+ date : / D a t e $ / ,
7
+ } ,
8
+ } ,
9
+ }
Original file line number Diff line number Diff line change 10
10
" webapp"
11
11
],
12
12
"scripts" : {
13
- "lint" : " lerna run lint --parallel --no-bail --stream"
13
+ "lint" : " lerna run lint --parallel --no-bail --stream" ,
14
+ "storybook" : " start-storybook -p 6006" ,
15
+ "build-storybook" : " build-storybook"
14
16
},
15
17
"devDependencies" : {
18
+ "@babel/core" : " ^7.16.0" ,
19
+ "@storybook/addon-actions" : " ^6.3.12" ,
20
+ "@storybook/addon-essentials" : " ^6.3.12" ,
21
+ "@storybook/addon-links" : " ^6.3.12" ,
22
+ "@storybook/react" : " ^6.3.12" ,
23
+ "@types/react" : " ^17.0.34" ,
24
+ "babel-loader" : " ^8.2.3" ,
25
+ "eslint" : " <8.0.0" ,
16
26
"lerna" : " 4.0.0" ,
17
27
"markdown-spellcheck" : " 1.3.1" ,
18
28
"markdownlint-cli" : " 0.29.0" ,
19
- "typescript" : " 4.4.4" ,
20
- "@types/react" : " ^17.0.34" ,
21
- "eslint" : " <8.0.0"
22
- }
29
+ "typescript" : " 4.4.4"
30
+ },
31
+ "dependencies" : {}
23
32
}
You can’t perform that action at this time.
0 commit comments