feat(create-turbo): create with-vite-react

This commit is contained in:
Turbobot
2026-01-05 13:41:53 +07:00
committed by Firman Ramdhani
commit 43b929db64
32 changed files with 2288 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"name": "web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --clearScreen false",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.ts\""
},
"dependencies": {
"@repo/ui": "workspace:*",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.57.0",
"typescript": "5.5.4",
"vite": "^5.1.4"
}
}