v1.3 - added an sqlite db and built data structure

This commit is contained in:
Zaldimmar 2026-09-25 02:35:46 -05:00
parent b0fba52c0e
commit 5efdafbb97
37 changed files with 6414 additions and 1988 deletions

18
server/package.json Normal file
View file

@ -0,0 +1,18 @@
{
"name": "ngu-api",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "node --watch src/index.js",
"start": "node src/index.js",
"migrate": "node src/migrate-cli.js"
},
"dependencies": {
"@hono/node-server": "^1.0.0",
"hono": "^4.0.0"
}
}