iop/apps/web/package.json
toki ed882cf6a4 feat: add control-plane, web, and docker-compose
- Add control-plane service with Dockerfile and internal packages
- Add web application (Next.js)
- Add docker-compose.yml for orchestration
- Update .gitignore and README.md
2026-05-18 06:21:48 +09:00

30 lines
701 B
JSON

{
"name": "@iop/web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node .next/standalone/server.js",
"check": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-slot": "1.2.4",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "1.16.0",
"next": "16.2.6",
"react": "19.2.6",
"react-dom": "19.2.6",
"tailwind-merge": "3.6.0"
},
"devDependencies": {
"@tailwindcss/postcss": "4.3.0",
"@types/node": "25.8.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"tailwindcss": "4.3.0",
"typescript": "6.0.3"
}
}