Files
toknd_auth/package.json
ramvignesh-b 553d9647c2
CI / build (push) Successful in 21s
chore: add production start script and update readme
2026-05-11 17:44:19 +05:30

36 lines
827 B
JSON

{
"name": "toknd",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun src/index.ts",
"test": "bun test",
"lint": "bunx @biomejs/biome check src",
"check-all": "bunx @biomejs/biome check .",
"format": "bunx @biomejs/biome format --write src",
"prepare": "husky"
},
"dependencies": {
"@hono/zod-openapi": "^1.4.0",
"@phosphor-icons/core": "^2.1.1",
"@scalar/hono-api-reference": "^0.10.14",
"hono": "^4.12.18",
"ioredis": "^5.10.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^22.19.18",
"bun-types": "^1.3.13",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,json}": [
"biome check --write --no-errors-on-unmatched"
]
}
}