-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.13 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
{
"name": "git-repo-analyzer",
"private": true,
"description": "View the tech stack, health and other insights of any GitHub repository",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"release": "cd apps/cli && bun run release",
"clean": "turbo run clean && rm -rf node_modules",
"test:coverage": "bun test --coverage",
"test:ci": "bun test --coverage --coverage-reporter=lcov",
"test:watch": "bun test --watch",
"lint": "oxlint --type-aware --type-check",
"lint:fix": "bun run lint --fix",
"fmt": "oxfmt --check",
"fmt:fix": "oxfmt",
"check": "bun run fmt && bun run lint",
"check:ci": "bun run fmt && bun run lint --format=github",
"fix": "bun run fmt:fix && bun run lint:fix",
"shadcn": "cd packages/ui && bunx --bun shadcn@latest add"
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.8.3",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"turbo": "^2.8.16",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.10"
}