init(app): Setup client package for web api specific logic

This commit is contained in:
Prad Nukala
2026-07-02 17:33:29 -04:00
parent f56116a26b
commit bcfeea93c9
27 changed files with 3104 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "cv-tailor",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"deploy": "vite build && wrangler deploy",
"check": "tsc -p tsconfig.app.json && tsc -p tsconfig.worker.json && tsc -p tsconfig.node.json",
"types": "wrangler types"
},
"dependencies": {
"hono": "^4",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1",
"@types/js-yaml": "^4",
"@types/node": "^26.1.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5",
"js-yaml": "^4",
"typescript": "^5",
"vite": "^7",
"wrangler": "^4"
}
}