add new components

This commit is contained in:
2026-02-19 05:57:31 +01:00
parent 316055652f
commit 2933465ba9
32 changed files with 3543 additions and 6916 deletions

View File

@@ -10,6 +10,7 @@
}
},
"scripts": {
"check-types": "tsc --noEmit",
"lint": "eslint ."
},
"dependencies": {

View File

@@ -14,6 +14,7 @@
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"db:migrate": "drizzle-kit migrate",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"db:start": "docker compose up -d",
"db:watch": "docker compose up",

View File

@@ -8,6 +8,7 @@
"./web": "./src/web.ts"
},
"scripts": {
"check-types": "tsc --noEmit",
"lint": "eslint ."
},
"dependencies": {

View File

@@ -1,5 +1,4 @@
import { createEnv } from "@t3-oss/env-core";
import { z } from "zod";
export const env = createEnv({
clientPrefix: "VITE_",

View File

@@ -1,3 +1,4 @@
import { tanstackConfig } from "@tanstack/eslint-config";
import eslintConfigPrettier from "eslint-config-prettier/flat";
export default [...tanstackConfig];
export default [...tanstackConfig, eslintConfigPrettier];

View File

@@ -9,6 +9,7 @@
},
"dependencies": {
"@tanstack/eslint-config": "^0.3.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0"