Files
nixi-api/package.json
2025-09-22 21:39:45 +00:00

39 lines
891 B
JSON

{
"name": "nixi-api",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://gitea.qpismont.fr/qpismont/nixi-api"
},
"license": "MIT",
"author": "qpismont",
"type": "module",
"main": "dist/app.js",
"scripts": {
"dev": "tsx watch src/app.ts",
"lint": "oxlint .",
"type": "tsc --noEmit",
"build": "bun build --target=bun --outfile dist/app.js src/app.ts",
"tests": "bun test"
},
"devDependencies": {
"@prettier/plugin-oxc": "^0.0.4",
"@types/bcrypt": "^6.0.0",
"@types/node": "^24.2.1",
"@types/pg": "^8.15.5",
"@types/bun": "latest",
"oxlint": "^1.16.0",
"prettier": "3.6.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"dependencies": {
"@hono/zod-validator": "^0.7.3",
"bcrypt": "^6.0.0",
"hono": "^4.9.8",
"pg": "^8.16.3",
"zod": "^4.1.11"
}
}