Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ vite.config.*.timestamp-*
.DS_Store
Thumbs.db

storybook-static

# Next.js
.next
out
Expand Down
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,6 @@ Analytics/
│ │ ├── react/ # React-specific providers
│ │ └── types/ # TypeScript types
│ └── vite.config.ts # Vite build configuration
├── docs/ # Documentation (Storybook)
└── tools/ # Build and development tools
```

Expand All @@ -281,12 +280,12 @@ pnpm build
# Run tests
pnpm test

# Lint code
pnpm lint
# Run tests in watch mode
pnpm test:watch

# Run Storybook for documentation
pnpm storybook
# Run tests with coverage
pnpm test:coverage

# Build Storybook
pnpm build-storybook
# Lint code
pnpm lint
```
1 change: 0 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export default defineConfig([
'**/coverage/**',
'**/vite.config.*.timestamp*',
'**/vitest.config.*.timestamp*',
'**/storybook-static/**',
],
},
{
Expand Down
14 changes: 0 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --ignore-pattern 'eslint.config.mjs'",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"publish:analytics": "pnpm build && cp libs/analytics/package.json dist/libs/analytics/ && cd dist/libs/analytics && npm publish --access public"
},
"dependencies": {
Expand All @@ -26,16 +24,7 @@
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-react": "^7.24.7",
"@chromatic-com/storybook": "^1.9.0",
"@playwright/test": "^1.47.1",
"@storybook/addon-essentials": "^8.3.1",
"@storybook/addon-interactions": "^8.3.1",
"@storybook/addon-links": "^8.3.1",
"@storybook/addon-onboarding": "^8.3.1",
"@storybook/blocks": "^8.3.1",
"@storybook/react": "^8.3.1",
"@storybook/react-vite": "^8.3.1",
"@storybook/test": "^8.3.1",
"@stylexjs/eslint-plugin": "0.14.1",
"@stylistic/eslint-plugin": "^2.9.0",
"@swc-node/register": "~1.9.2",
Expand All @@ -59,16 +48,13 @@
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jsdom": "~22.1.0",
"prettier": "^3.6.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^6.26.2",
"storybook": "^8.3.1",
"storybook-addon-remix-react-router": "^3.0.0",
"ts-node": "10.9.1",
"typescript": "^5.6.2",
"vite": "^5.2.0",
Expand Down
Loading