From 1037d393be164b12b4b1cff53033e736ce581d7a Mon Sep 17 00:00:00 2001 From: vince Date: Sat, 20 Jun 2026 05:41:36 +0200 Subject: [PATCH] refactor(web): move website into turbo app workspace --- components.json | 25 +++++++++++++++++++++++++ package.json | 2 ++ src/css.d.ts | 1 + 3 files changed, 28 insertions(+) create mode 100644 components.json create mode 100644 src/css.d.ts diff --git a/components.json b/components.json new file mode 100644 index 0000000..d951369 --- /dev/null +++ b/components.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://ui.shadcn.com/schema.json", + "style": "radix-nova", + "rsc": false, + "tsx": true, + "tailwind": { + "config": "", + "css": "src/styles.css", + "baseColor": "neutral", + "cssVariables": true, + "prefix": "" + }, + "iconLibrary": "lucide", + "rtl": false, + "aliases": { + "components": "src/components", + "utils": "src/utils", + "ui": "src/primitives", + "lib": "src", + "hooks": "src/hooks" + }, + "menuColor": "default", + "menuAccent": "subtle", + "registries": {} +} diff --git a/package.json b/package.json index 3afa92e..cb7febf 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,8 @@ "@types/node": "^25.9.3", "@types/react": "^19.2.17", "@types/react-dom": "^19.2.3", + "bun-types": "^1.3.14", + "storybook": "^10.4.6", "typescript": "^6.0.3", "vite": "^8.0.16", "vitest": "^4.1.9" diff --git a/src/css.d.ts b/src/css.d.ts new file mode 100644 index 0000000..cbe652d --- /dev/null +++ b/src/css.d.ts @@ -0,0 +1 @@ +declare module "*.css";