65 lines
1.8 KiB
JSON
65 lines
1.8 KiB
JSON
{
|
|
"catalog": {
|
|
"@types/bun": "^1.3.1",
|
|
"@types/node": "^20.5.9",
|
|
"@types/react": "^19.2.0",
|
|
"@types/react-dom": "^19.2.0",
|
|
"date-fns": "^3.6.0",
|
|
"next": "^16.0.0",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"typescript": "^5.9.3",
|
|
"zod": "^4.0.0"
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@basango/tsconfig": "workspace:*",
|
|
"@biomejs/biome": "^2.3.1",
|
|
"@commitlint/cli": "^20.1.0",
|
|
"@commitlint/config-conventional": "^20.0.0",
|
|
"@manypkg/cli": "^0.25.1",
|
|
"commitizen": "^4.3.1",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"husky": "^9.1.7",
|
|
"turbo": "^2.5.8",
|
|
"typescript": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"name": "basango",
|
|
"packageManager": "bun@1.3.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"build:api": "turbo build --filter=@basango/api",
|
|
"build:dashboard": "turbo build --filter=@basango/dashboard",
|
|
"clean": "git clean -xdf node_modules",
|
|
"clean:workspaces": "turbo run clean",
|
|
"dev": "turbo run dev --parallel",
|
|
"dev:api": "turbo dev --filter=@basango/api",
|
|
"dev:dashboard": "turbo dev --filter=@basango/dashboard",
|
|
"format": "biome format --write && biome check --write && biome lint --write",
|
|
"lint": "biome check && biome lint && manypkg check",
|
|
"start:api": "turbo start --filter=@basango/api",
|
|
"start:dashboard": "turbo start --filter=@basango/dashboard",
|
|
"test": "turbo run test --parallel",
|
|
"typecheck": "turbo run typecheck"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"apps/crawler/*",
|
|
"apps/dashboard/*",
|
|
"apps/mobile/*"
|
|
]
|
|
}
|