status-page/package.json
2023-10-28 18:28:50 +02:00

23 lines
501 B
JSON

{
"name": "status-page",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"watch": "bun --watch src/index.ts",
"docker:build": "docker build -t status-page ."
},
"devDependencies": {
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@elysiajs/html": "^0.7.3",
"@elysiajs/static": "^0.7.1",
"elysia": "^0.7.21",
"handlebars": "^4.7.8",
"lowdb": "^6.1.1"
}
}