chore: scaffold arcanesync deps and config

This commit is contained in:
devilreef 2026-04-29 12:14:17 +06:00
parent 6b522a0803
commit bd26ba77e6
Signed by: devilreef
SSH key fingerprint: SHA256:UZisRr4iuXx+IhkbZnR655L2RWAT6o2rgbGv5F/6m3Y
4 changed files with 817 additions and 1 deletions

View file

@ -11,16 +11,26 @@
"dev": "tsx --watch src/index.ts",
"start": "cross-env NODE_ENV=production tsx src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
"lint:fix": "eslint . --fix",
"test": "node --test --import tsx",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@hono/node-server": "^2.0.0",
"cross-env": "^7.0.3",
"drizzle-orm": "^0.45.2",
"env-var": "^7.5.0",
"hono": "^4.12.15",
"pg": "^8.20.0",
"tsx": "^4.21.0"
},
"devDependencies": {
"@antfu/eslint-config": "^8.0.0",
"@types/node": "^22.15.0",
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9.27.0"
}
}