trepa/package.json

26 lines
511 B
JSON
Raw Normal View History

2024-12-30 20:48:29 +01:00
{
"name": "trepa",
"module": "app.ts",
"type": "module",
"scripts": {
"build": "bun build ./src/app.ts --compile --outfile=./dist/app",
"ci": "biome ci . --error-on-warnings",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/pg": "^8.11.10"
},
"peerDependencies": {
"typescript": "^5.6.2"
},
"dependencies": {
2024-12-30 22:29:16 +01:00
"fastify": "^5.2.0",
2024-12-30 20:48:29 +01:00
"hono": "^4.6.15",
2024-12-30 22:29:16 +01:00
"inversify": "^6.2.1",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2"
2024-12-30 20:48:29 +01:00
}
}