status-page/package.json

25 lines
707 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 .",
"docker:tag": "docker tag status-page git.sofiaritz.com/infrastructure/status-page",
"docker:push": "bun docker:build && bun docker:tag && docker push git.sofiaritz.com/infrastructure/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"
}
}