-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.83 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"catalog": {
"@devscast/config": "^1.1.1",
"@types/bun": "^1.3.1",
"@types/node": "^24.10.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"date-fns": "^3.6.0",
"next": "^16.0.7",
"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.8",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@manypkg/cli": "^0.25.1",
"@types/bun": "^1.3.4",
"@types/node": "^24.10.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"turbo": "^2.6.3",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
},
"name": "basango",
"packageManager": "bun@1.3.1",
"private": true,
"scripts": {
"build": "turbo run build",
"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",
"migrate": "cd packages/db && bunx drizzle-kit migrate",
"prepare": "husky",
"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/*"
]
}