mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
Run Den controller, web, and worker proxy through a root dev:den-local workflow backed by Turbo and auto-managed local MySQL. Restore the background agents tab to show real sandboxes, add manual sandbox creation, stop auto-launching sandboxes on signup, and move Billing lower in the sidebar. Co-authored-by: src-opn <src-opn@users.noreply.github.com>
27 lines
826 B
JSON
27 lines
826 B
JSON
{
|
|
"name": "@openwork-ee/den-web",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "OPENWORK_DEV_MODE=1 NEXT_PUBLIC_POSTHOG_KEY= NEXT_PUBLIC_POSTHOG_API_KEY= next dev --hostname 0.0.0.0 --port 3005",
|
|
"dev:local": "sh -lc 'OPENWORK_DEV_MODE=1 NEXT_PUBLIC_POSTHOG_KEY= NEXT_PUBLIC_POSTHOG_API_KEY= next dev --hostname 0.0.0.0 --port ${DEN_WEB_PORT:-3005}'",
|
|
"build": "next build",
|
|
"start": "next start --hostname 0.0.0.0 --port 3005",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"next": "14.2.5",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "20.12.12",
|
|
"@types/react": "18.2.79",
|
|
"@types/react-dom": "18.2.25",
|
|
"autoprefixer": "10.4.19",
|
|
"postcss": "8.4.38",
|
|
"tailwindcss": "3.4.7",
|
|
"typescript": "5.4.5"
|
|
}
|
|
}
|