-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 743 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 743 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
{
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@kora/config": "workspace:*",
"lefthook": "^1.10.11",
"turbo": "^2.3.1",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
},
"name": "turbo-starter",
"packageManager": "pnpm@9.4.0",
"private": true,
"scripts": {
"build": "turbo build",
"commitlint": "commitlint --edit",
"dev": "turbo dev",
"format": "pnpm exec biome format --write",
"format:check": "pnpm exec biome format",
"lint": "pnpm exec biome check --write",
"lint:check": "pnpm exec biome check",
"lint:write": "turbo lint:write",
"prepare": "lefthook install"
}
}