add commands

This commit is contained in:
DaKheera47
2026-01-25 12:29:13 +00:00
parent 3c710f28c2
commit ac02a5fd1d
2 changed files with 171 additions and 1 deletions
+7 -1
View File
@@ -8,6 +8,11 @@
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:client": "vite --host",
"ci": "biome ci",
"check": "biome check",
"check:fix": "biome check --write",
"format": "biome format",
"format:fix": "biome format --write",
"build": "npm run build:client && npm run build:server",
"build:server": "tsc -p tsconfig.server.json && tsc-alias -p tsconfig.server.json",
"build:client": "vite build",
@@ -56,6 +61,7 @@
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "2.3.12",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
@@ -84,4 +90,4 @@
"vite": "^6.0.3",
"vitest": "^4.0.16"
}
}
}