Skip to content

Commit 8d25662

Browse files
committed
storybook
1 parent a6b0eb4 commit 8d25662

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+4936
-373
lines changed

.eslintrc.cjs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
module.exports = {
22
root: true,
33
env: { browser: true, es2020: true },
4-
extends: [
5-
'eslint:recommended',
6-
'plugin:@typescript-eslint/recommended',
7-
'plugin:react-hooks/recommended',
8-
],
4+
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react-hooks/recommended', 'plugin:storybook/recommended'],
95
ignorePatterns: ['dist', '.eslintrc.cjs'],
106
parser: '@typescript-eslint/parser',
117
plugins: ['react-refresh'],

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ dist-ssr
2424
*.sw?
2525
# dev-dist
2626
dev-dist
27+
28+
*storybook.log!
29+
/storybook-static/

README.md

-30
This file was deleted.

package.json

+18-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,27 @@
77
"dev": "vite",
88
"build": "tsc && vite build",
99
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
10-
"preview": "vite preview"
10+
"preview": "vite preview",
11+
"storybook": "storybook dev -p 6006 -c src/integrations/storybook",
12+
"build-storybook": "storybook build -c src/integrations/storybook"
1113
},
1214
"dependencies": {
1315
"@tanstack/react-router": "^1.29.2",
1416
"clsx": "^2.1.0",
1517
"react": "^18.2.0",
16-
"react-dom": "^18.2.0"
18+
"react-dom": "^18.2.0",
19+
"react-use": "^17.5.1"
1720
},
1821
"devDependencies": {
22+
"@chromatic-com/storybook": "^1.6.1",
23+
"@storybook/addon-essentials": "^8.1.11",
24+
"@storybook/addon-interactions": "^8.1.11",
25+
"@storybook/addon-links": "^8.1.11",
26+
"@storybook/addon-onboarding": "^8.1.11",
27+
"@storybook/blocks": "^8.1.11",
28+
"@storybook/react": "^8.1.11",
29+
"@storybook/react-vite": "^8.1.11",
30+
"@storybook/test": "^8.1.11",
1931
"@tanstack/router-devtools": "^1.29.2",
2032
"@tanstack/router-vite-plugin": "^1.30.0",
2133
"@types/react": "^18.2.66",
@@ -28,10 +40,13 @@
2840
"eslint": "^8.57.0",
2941
"eslint-plugin-react-hooks": "^4.6.0",
3042
"eslint-plugin-react-refresh": "^0.4.6",
43+
"eslint-plugin-storybook": "^0.8.0",
3144
"postcss": "^8.4.38",
45+
"storybook": "^8.1.11",
3246
"tailwindcss": "^3.4.3",
3347
"typescript": "^5.2.2",
3448
"vite": "^5.2.0",
35-
"vite-plugin-pwa": "^0.19.8"
49+
"vite-plugin-pwa": "^0.19.8",
50+
"vite-tsconfig-paths": "^4.3.2"
3651
}
3752
}

0 commit comments

Comments
 (0)