-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.24 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.24 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
38
39
40
{
"name": "idea",
"private": true,
"engines": {
"node": ">=25"
},
"packageManager": "bun@1.3.10",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"clean": "git clean -xdf node_modules",
"clean:ws": "turbo run clean",
"check:ws": "bun run check:ws:core && bun run check:rules",
"check:ws:core": "biome check .",
"check:ws:ci": "biome ci . && bun run check:rules",
"check:rules:any": "./scripts/rules/check-any.sh",
"check:rules:lines": "./scripts/rules/check-lines.sh",
"check:rules:comments": "./scripts/rules/check-comments.sh",
"check:rules:naming": "./scripts/rules/check-naming.sh",
"check:rules": "./scripts/rules/check-all.sh",
"report:cleanup:baseline": "./scripts/cleanup-report.sh baseline",
"report:cleanup:final": "./scripts/cleanup-report.sh final",
"lint:ws": "sherif",
"typecheck": "turbo run typecheck",
"knip": "knip",
"postinstall": "bun lint:ws",
"db": "bun --env-file=.env --elide-lines=0 run -F @repo/db prisma --"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"knip": "^6.3.1",
"sherif": "^1.11.1",
"turbo": "^2.9.5",
"typescript": "6.0.2"
},
"workspaces": [
"apps/*",
"packages/*"
]
}