2024-09-21 13:28:02 +07:00
|
|
|
{
|
|
|
|
|
"name": "@minikura/backend",
|
|
|
|
|
"module": "src/index.ts",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"exports": "./src/index.ts",
|
|
|
|
|
"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"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/bun": "^1.1.9"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"typescript": "^5.0.0"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@elysiajs/swagger": "^1.1.1",
|
|
|
|
|
"@minikura/db": "workspace:*",
|
2025-01-02 12:13:18 +07:00
|
|
|
"argon2": "^0.41.1",
|
2024-09-21 13:28:02 +07:00
|
|
|
"dotenv": "^16.4.5",
|
|
|
|
|
"elysia": "^1.1.13"
|
|
|
|
|
}
|
|
|
|
|
}
|