-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 960 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 960 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
29
{
"name": "app-portal",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "pnpm -r build",
"checks": "concurrently \"pnpm format:check:all\" \"pnpm lint:all\" \"pnpm typecheck\" \"pnpm knip\"",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"lint:all": "pnpm -r --no-bail lint",
"lint:ci": "pnpm -r --no-bail lint:ci",
"format": "pnpm -r format",
"format:check": "pnpm -r format:check",
"format:check:all": "pnpm -r --no-bail format:check",
"knip": "knip",
"knip:fix": "knip --fix"
},
"devDependencies": {
"@types/node": "^25.9.1",
"concurrently": "^10.0.0",
"isolate-package": "^1.33.0",
"knip": "^6.14.2",
"oxfmt": "^0.50.0",
"oxlint": "^1.65.0",
"oxlint-tsgolint": "^0.22.1",
"typescript": "~5.6.2"
}
}