-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 709 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "stackyard-dev",
"private": true,
"description": "Dev-only tooling (lint, backend typecheck, frontend path resolution). Not shipped: the Docker image copies only api/ and ui/, never the repo root.",
"scripts": {
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint --error-on-warnings .",
"paths:check": "node scripts/check-frontend-paths.js",
"typecheck": "tsc -p tsconfig.json",
"typecheck:ui": "tsc -p tsconfig.frontend.json"
},
"devDependencies": {
"@biomejs/biome": "2.5.14",
"@playwright/test": "^1.63.0",
"@types/node": "26.6.1",
"c8": "12.0.0",
"js-yaml": "^5.4.2",
"typescript": "6.0.3"
}
}