-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "tech-stack",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"format": "biome format .",
"format:write": "biome format --write .",
"lint": "biome lint .",
"lint:write": "biome lint --write .",
"lint:write:unsafe": "biome lint --write --unsafe .",
"assist": "biome check --formatter-enabled=false --linter-enabled=false .",
"assist:write": "biome check --write --formatter-enabled=false --linter-enabled=false .",
"check": "biome check .",
"check:write": "biome check --write .",
"check:write:unsafe": "biome check --write --unsafe ."
},
"dependencies": {
"@changesets/cli": "^2.29.8"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"lefthook": "^2.1.0",
"turbo": "^2.8.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "pnpm@10.10.0",
"engines": {
"node": ">=18"
}
}