mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-08 22:48:14 -05:00
* fix(billing): team usage tracking cleanup, shared pool of limits for team * address greptile commments * fix lint * remove usage of deprecated cols" * update periodStart and periodEnd correctly * fix lint * fix type issue * fix(billing): cleaned up billing, still more work to do on UI and population of data and consolidation * fix upgrade * cleanup * progress * works * Remove 78th migration to prepare for merge with staging * fix migration conflict * remove useless test file * fix * Fix undefined seat pricing display and handle cancelled subscription seat updates * cleanup code * cleanup to use helpers for pulling pricing limits * cleanup more things * cleanup * restore environment ts file * remove unused files * fix(team-management): fix team management UI, consolidate components * use session data instead of subscription data in settings navigation * remove unused code * fix UI for enterprise plans * added enterprise plan support * progress * billing state machine * split overage and base into separate invoices * fix badge logic --------- Co-authored-by: waleedlatif1 <walif6@gmail.com>
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "simstudio",
|
|
"packageManager": "bun@1.2.12",
|
|
"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",
|
|
"prebuild": "bun run lint:check",
|
|
"type-check": "turbo run type-check"
|
|
},
|
|
"overrides": {
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0"
|
|
},
|
|
"dependencies": {
|
|
"@linear/sdk": "40.0.0",
|
|
"@t3-oss/env-nextjs": "0.13.4",
|
|
"@vercel/analytics": "1.5.0",
|
|
"drizzle-orm": "0.44.5",
|
|
"geist": "^1.4.2",
|
|
"pg": "8.16.3",
|
|
"react-colorful": "5.6.1",
|
|
"remark-gfm": "4.0.1",
|
|
"socket.io-client": "4.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.0.0-beta.5",
|
|
"@next/env": "^15.3.2",
|
|
"@types/word-extractor": "1.0.6",
|
|
"dotenv-cli": "^8.0.0",
|
|
"husky": "9.1.7",
|
|
"lint-staged": "16.0.0",
|
|
"turbo": "2.5.6"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,json,css,scss}": [
|
|
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
|
|
]
|
|
}
|
|
}
|