refactor: migrate to tsup for builds and update tsconfigs fix: update error handling and validation in payment service chore: update package scripts and dependencies docs: update README and env examples
34 lines
767 B
JSON
34 lines
767 B
JSON
{
|
|
"name": "api",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsup",
|
|
"start": "node dist/index.js",
|
|
"check-types": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@hono/node-server": "^1.15.0",
|
|
"@hono/swagger-ui": "^0.5.2",
|
|
"@hono/zod-openapi": "^0.9.0",
|
|
"@hono/zod-validator": "^0.4.3",
|
|
"@repo/config": "*",
|
|
"@repo/logger": "*",
|
|
"@repo/typescript-config": "*",
|
|
"dotenv": "^17.1.0",
|
|
"hono": "^4.8.4",
|
|
"hono-openapi": "^0.4.8",
|
|
"zod": "^3.25.76",
|
|
"zod-openapi": "^4.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.2",
|
|
"tsup": "^8.3.5",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|