-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 829 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 829 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
{
"name": "titular",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.6.2",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"format": "biome format --write .",
"format:check": "biome format .",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"turbo": "2.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": ["biome check --write --no-errors-on-unmatched"],
"*.{sh}": ["shellcheck --severity=warning"]
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
}
}