-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@commitlint/prompt-cli": "^20.4.3",
"@commitlint/types": "^20.4.3",
"@northware/tsconfig": "workspace:",
"turbo": "^2.8.14",
"typescript": "^5.9.3",
"ultracite": "6.5.1"
},
"engines": {
"node": ">=22"
},
"license": "MIT",
"name": "northware",
"packageManager": "pnpm@10.23.0",
"private": true,
"scripts": {
"build": "turbo build",
"bump-ui": "cd ./packages/ui && pnpm bump-ui",
"commit": "commit",
"dev": "turbo dev",
"drizzle-generate": "cd ./packages/database && pnpm drizzle-kit generate",
"drizzle-migrate": "cd ./packages/database && pnpm drizzle-kit migrate",
"fix": "turbo fix",
"fix:root": "ultracite fix",
"generate-icons": "cd packages/ui && pnpm generate-icons",
"check": "turbo fix",
"check:root": "ultracite check",
"localci": "turbo build lint --affected",
"tsc-check": "turbo tsc-check",
"tsc-check:root": "tsc --noEmit"
}
}