mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-05 05:04:10 -05:00
55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"name": "simstudio",
|
|
"packageManager": "bun@1.3.3",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"license": "Apache-2.0",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev",
|
|
"dev:sockets": "cd apps/sim && bun run dev:sockets",
|
|
"dev:full": "cd apps/sim && bun run dev:full",
|
|
"test": "turbo run test",
|
|
"format": "bunx biome format --write .",
|
|
"format:check": "bunx biome format .",
|
|
"lint": "bunx biome check --write --unsafe .",
|
|
"lint:check": "bunx biome check --unsafe .",
|
|
"lint:helm": "helm lint ./helm/sim --strict --values ./helm/sim/test/values-lint.yaml",
|
|
"lint:all": "bun run lint && bun run lint:helm",
|
|
"check": "bunx biome check --files-ignore-unknown=true",
|
|
"prepare": "bun husky",
|
|
"type-check": "turbo run type-check",
|
|
"release": "bun run scripts/create-single-release.ts"
|
|
},
|
|
"overrides": {
|
|
"react": "19.2.1",
|
|
"react-dom": "19.2.1",
|
|
"next": "16.1.0-canary.21",
|
|
"@next/env": "16.1.0-canary.21",
|
|
"drizzle-orm": "^0.44.5",
|
|
"postgres": "^3.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.0.0-beta.5",
|
|
"@next/env": "16.1.0-canary.21",
|
|
"@octokit/rest": "^21.0.0",
|
|
"@tailwindcss/typography": "0.5.19",
|
|
"drizzle-kit": "^0.31.4",
|
|
"husky": "9.1.7",
|
|
"lint-staged": "16.0.0",
|
|
"turbo": "2.7.2"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,json,css,scss}": [
|
|
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
|
|
]
|
|
},
|
|
"trustedDependencies": [
|
|
"sharp"
|
|
]
|
|
}
|