23 lines
640 B
JSON
23 lines
640 B
JSON
{
|
|
"name": "genesis-frontend",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "node esbuild.config.mjs",
|
|
"watch": "node esbuild.config.mjs --watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"typecheck:watch": "tsc --noEmit --watch",
|
|
"test": "node --test tests/state.test.ts tests/ws.test.ts",
|
|
"test:watch": "node --test --watch tests/state.test.ts tests/ws.test.ts",
|
|
"verify": "npm run typecheck && npm test && npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.20.2",
|
|
"esbuild": "^0.24.0",
|
|
"typescript": "^5.6.0",
|
|
"vite": "^5.4.0"
|
|
}
|
|
}
|