Init applications

This commit is contained in:
NVWA Bot
2026-01-04 10:30:54 +00:00
commit ffc8bfaafb
193 changed files with 35016 additions and 0 deletions

13
package.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "${REPO_NAME}",
"description": "${REPO_DESCRIPTION}",
"version": "1.0.0",
"main": "index.js",
"author": "${REPO_OWNER}",
"license": "ISC",
"scripts": {
"db:generate": "pnpm --filter database run db:generate",
"db:migrate": "pnpm --filter database run db:migrate",
"db:studio": "pnpm --filter database run db:studio"
}
}