feat: initialisation projet Hono.js + TypeScript + Vitest

This commit is contained in:
Hermann_Kitio 2026-04-16 06:37:25 +03:00
parent b06970c9ae
commit 708517edef
13 changed files with 3125 additions and 131 deletions

26
package.json Normal file
View file

@ -0,0 +1,26 @@
{
"name": "expria-backend",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@supabase/supabase-js": "^2.49.4",
"hono": "^4.7.7",
"stripe": "^17.7.0"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@vitest/coverage-v8": "^3.1.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}