Files
h-school/src/HSchool.Client/package.json
T
Leonid Pershin 45059b927f Run client typecheck before vitest in npm test.
Duplicate keys in strings.ts were green under vitest and red only on build. Drop the self file: dependency loop so npm test is enough.
2026-08-20 12:57:16 +03:00

25 lines
502 B
JSON

{
"name": "hschool-client",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc -b",
"test": "node ./scripts/run-test.mjs",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^24.10.1",
"happy-dom": "^20.11.2",
"typescript": "~5.9.3",
"vite": "^8.2.1",
"vitest": "^4.1.10"
}
}