Ajout des fichiers de base pour le projet.

This commit is contained in:
2025-08-12 17:18:10 +00:00
parent 0695d2ca1e
commit 14e69e1f61
20 changed files with 2087 additions and 0 deletions

35
package.json Normal file
View File

@ -0,0 +1,35 @@
{
"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": "rolldown src/app.ts --file dist/app.js --platform node --format esm --minify"
},
"devDependencies": {
"@prettier/plugin-oxc": "^0.0.4",
"@types/node": "^24.2.1",
"@types/pg": "^8.15.5",
"oxlint": "^1.11.1",
"prettier": "3.6.2",
"rolldown": "^1.0.0-beta.32",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"dependencies": {
"@hono/node-server": "^1.18.1",
"hono": "^4.9.0",
"pg": "^8.16.3",
"zod": "^4.0.17"
}
}