mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
* migrate to bun * added envvars to drizzle * upgrade bun devcontainer feature to a valid one * added bun, docker not working * updated envvars, updated to bunder and esnext modules * fixed build, reinstated otel * feat: optimized multi-stage docker images * add coerce for boolean envvar * feat: add docker-compose configuration for local LLM services and remove legacy Dockerfile and entrypoint script * feat: add docker-compose files for local and production environments, and implement GitHub Actions for Docker image build and publish * refactor: remove unused generateStaticParams function from various API routes and maintain dynamic rendering * cleanup * upgraded bun * updated ci * fixed build --------- Co-authored-by: Aditya Tripathi <aditya@climactic.co>
36 lines
823 B
JSON
36 lines
823 B
JSON
{
|
|
"devDependencies": {
|
|
"@next/env": "^15.3.2",
|
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
"dotenv-cli": "^8.0.0",
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
"turbo": "2.5.3"
|
|
},
|
|
"packageManager": "bun@1.2.12",
|
|
"name": "simstudio",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"license": "Apache-2.0",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev",
|
|
"test": "turbo run test",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "turbo run lint"
|
|
},
|
|
"overrides": {
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"tailwindcss": "3.4.1"
|
|
},
|
|
"dependencies": {
|
|
"@t3-oss/env-nextjs": "0.13.4",
|
|
"@vercel/analytics": "1.5.0"
|
|
}
|
|
} |