-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"private": true,
"description": "Dev-only manifest for typecheck, test glue, and docker compose wrappers. Runtime has zero npm deps — the Dockerfile copies src/ and never runs npm install, so this file never enters the container. Marked private; other npm-registry fields (name, version, license, repository) intentionally omitted, since they exist for publishable packages. Project metadata lives in README and LICENSE.",
"scripts": {
"start": "docker compose up -d --build",
"stop": "docker compose down --remove-orphans",
"typecheck": "tsc --noEmit",
"test:unit": "npm run --prefix tests/unit test",
"test:e2e": "npm run --prefix tests/e2e test",
"clean:e2e": "npm run --prefix tests/e2e clean"
},
"devDependencies": {
"@types/node": "24.x",
"typescript": "5.x"
},
"engines": {
"node": ">=24.0.0"
}
}