Files
HexaHost-GameCloud/apps/web/package.json
smueller 4104daaf75
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 9s
CI / Go — node-agent tests (push) Failing after 55s
CI / Go — edge-gateway build (push) Successful in 13s
initial commit2
2026-06-26 10:45:58 +02:00

18 lines
434 B
JSON

{
"name": "@hexahost/web",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc && node scripts/build-static.mjs",
"lint": "node -e \"process.exit(0)\"",
"typecheck": "tsc --noEmit",
"test": "node --test test/**/*.test.js",
"start": "node dist/server.js",
"dev": "pnpm build && node dist/server.js"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}