-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 969 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 969 Bytes
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
{
"name": "parsh-monorepo",
"type": "module",
"private": true,
"scripts": {
"build": "bun run --bun turbo build",
"test": "bun run --bun turbo test",
"check:types": "bun run --bun turbo check:types",
"check:codestyle": "bun run --bun biome check",
"check:all": "bun check:types && bun check:codestyle",
"check:commit-message": "bun run --bun commitlint",
"fix:codestyle": "bun run --bun biome check --write"
},
"workspaces": {
"packages": [
"packages/*",
"packages/*/pkg",
"examples/*"
],
"catalog": {
"typescript": "^5.9.3",
"zod": "^4.3.6"
}
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/format": "^20.5.0",
"@commitlint/types": "^20.5.0",
"@types/bun": "^1.3.13",
"typescript": "catalog:",
"turbo": "^2.9.6"
},
"packageManager": "bun@1.3.13"
}