22 lines
404 B
JSON
22 lines
404 B
JSON
{
|
|
"name": "my-score-backend",
|
|
"version": "1.0.0",
|
|
"description": "My Score Backend API",
|
|
"type": "module",
|
|
"main": "main.ts",
|
|
"scripts": {
|
|
"start": "bun run main.ts",
|
|
"dev": "bun --watch main.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"hono": "^4.7.11",
|
|
"postgres": "^3.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
}
|
|
}
|