Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: LineChart #20

Merged
merged 20 commits into from
May 18, 2024
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
58 changes: 31 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "testapp",
"name": "tremor-raw",
"private": true,
"version": "0.0.0",
"type": "module",
Expand All @@ -10,11 +10,12 @@
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"component-folder": "node ./scripts/component-folder.js ./src"
"component-folder": "node ./scripts/component-folder.js ./src",
"test:all": "npx vitest run && npx playwright test"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@internationalized/date": "^3.5.2",
"@internationalized/date": "^3.5.3",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
Expand All @@ -29,46 +30,49 @@
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-aria/datepicker": "^3.9.3",
"@react-stately/datepicker": "^3.9.2",
"@react-aria/datepicker": "^3.10.0",
"@react-stately/datepicker": "^3.9.3",
"@remixicon/react": "^4.2.0",
"@storybook/addon-a11y": "^8.0.9",
"@storybook/theming": "^8.0.9",
"@storybook/addon-a11y": "^8.1.1",
"@storybook/theming": "^8.1.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"react": "^18.2.0",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.2.0",
"react-dom": "^18.3.1",
"recharts": "^2.12.7",
"tailwind-merge": "^2.3.0",
"tailwind-variants": "^0.2.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.3",
"@playwright/test": "^1.43.1",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@storybook/test": "^8.0.9",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@chromatic-com/storybook": "^1.4.0",
"@playwright/test": "^1.44.0",
"@storybook/addon-essentials": "^8.1.1",
"@storybook/addon-interactions": "^8.1.1",
"@storybook/addon-links": "^8.1.1",
"@storybook/blocks": "^8.1.1",
"@storybook/react": "^8.1.1",
"@storybook/react-vite": "^8.1.1",
"@storybook/test": "^8.1.1",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"postcss": "^8.4.38",
"prettier": "3.2.5",
"storybook": "^8.0.9",
"storybook": "^8.1.1",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.10"
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { defineConfig, devices } from "@playwright/test"
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: "./src",
testDir: "./src/components",
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
Expand Down
Loading