cpns / apps /server /package.json
pramudya-yb
Rename project from Labas to Pram
2b62b0c
Raw
History Blame Contribute Delete
880 Bytes
{
"name": "server",
"license": "AGPL-3.0",
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "tsdown",
"check-types": "tsc -b",
"compile": "bun build --compile --minify --sourcemap --bytecode ./src/index.ts --outfile server",
"dev": "bun run --hot src/index.ts",
"start": "bun run dist/index.mjs"
},
"dependencies": {
"@hono/trpc-server": "^0.4.0",
"@pram/api": "workspace:*",
"@pram/auth": "workspace:*",
"@pram/db": "workspace:*",
"@pram/env": "workspace:*",
"@trpc/server": "catalog:",
"better-auth": "catalog:",
"dotenv": "catalog:",
"hono": "catalog:",
"nodemailer": "^8.0.7",
"zod": "catalog:"
},
"devDependencies": {
"@pram/config": "workspace:*",
"@types/bun": "catalog:",
"@types/nodemailer": "^8.0.0",
"tsdown": "^0.21.9",
"typescript": "catalog:"
}
}