Initial codex-flows monorepo

This commit is contained in:
matamune 2026-05-12 15:15:09 +00:00
commit 3c446b11a4
642 changed files with 19676 additions and 0 deletions

29
apps/web/package.json Normal file
View file

@ -0,0 +1,29 @@
{
"name": "web",
"version": "0.0.1",
"type": "module",
"private": true,
"license": "Apache-2.0",
"scripts": {
"build": "tsc -b && vite build",
"check:types": "tsc --noEmit",
"dev": "vite --host 127.0.0.1",
"preview": "vite preview --host 127.0.0.1"
},
"dependencies": {
"@workspace/ui": "workspace:*",
"@peezy-tech/codex-flows": "workspace:*",
"lucide-react": "catalog:",
"react": "catalog:",
"react-dom": "catalog:"
},
"devDependencies": {
"@tailwindcss/vite": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"typescript": "catalog:",
"vite": "catalog:"
}
}