feat: add command (#337)

This commit is contained in:
Aman Varshney
2025-06-22 03:20:05 +05:30
committed by GitHub
parent 198d0e7434
commit 9c7a0f0110
29 changed files with 1015 additions and 255 deletions

View File

@@ -0,0 +1,27 @@
{
"name": "web",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --port 3001",
"build": "vite build && tsc",
"serve": "vite preview",
"test": "vitest run"
},
"dependencies": {
"@tailwindcss/vite": "^4.0.6",
"@tanstack/router-plugin": "^1.109.2",
"@tanstack/solid-form": "^1.9.0",
"@tanstack/solid-router": "^1.110.0",
"@tanstack/solid-router-devtools": "^1.109.2",
"lucide-solid": "^0.507.0",
"solid-js": "^1.9.4",
"tailwindcss": "^4.0.6",
"zod": "^3.25.16"
},
"devDependencies": {
"typescript": "^5.7.2",
"vite": "^6.0.11",
"vite-plugin-solid": "^2.11.2"
}
}