30 lines
774 B
JSON
30 lines
774 B
JSON
{
|
|
"name": "gateway-checker",
|
|
"module": "src/server/dev.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "bun run scripts/dev.ts",
|
|
"dev:server": "bun --watch src/server/dev.ts",
|
|
"dev:web": "bunx --bun vite --host 127.0.0.1",
|
|
"build:web": "bunx --bun vite build",
|
|
"build": "bun run scripts/build.ts",
|
|
"start": "bun src/server/dev.ts",
|
|
"test": "bun test",
|
|
"test:smoke": "bun run scripts/smoke.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.13",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
"typescript": "^6.0.3",
|
|
"vite": "^8.0.11"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6"
|
|
}
|
|
}
|