Files
Kyoo/api/package.json
2025-03-18 22:05:45 +01:00

29 lines
666 B
JSON

{
"name": "api",
"version": "5.0.0",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --target bun --outdir ./dist",
"start": "NODE_ENV=production bun dist/index.js",
"test": "bun test",
"format": "biome check --write ."
},
"dependencies": {
"@elysiajs/jwt": "^1.2.0",
"@elysiajs/swagger": "^1.2.2",
"drizzle-kit": "^0.30.4",
"drizzle-orm": "0.39.0",
"elysia": "^1.2.23",
"parjs": "^1.3.9",
"pg": "^8.13.3"
},
"devDependencies": {
"@types/pg": "^8.11.11",
"bun-types": "^1.2.4"
},
"module": "src/index.js",
"patchedDependencies": {
"drizzle-orm@0.39.0": "patches/drizzle-orm@0.39.0.patch"
}
}