status-page/package.json

23 lines
501 B
JSON
Raw Normal View History

2023-10-28 16:28:50 +00:00
{
"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"
}
}