overhauled mock auth solution

This commit is contained in:
2026-01-26 01:14:19 -05:00
parent b4fcb1a366
commit 083ddc345b
3 changed files with 133 additions and 99 deletions

View File

@@ -11,13 +11,11 @@
"dev": "tsc && tsc-alias && node ./built/api/src/index.js",
"prod": "tsc && tsc-alias && node ./built/api/src/index.js",
"build": "tsc && tsc-alias",
"migrate": "node ./scripts/migrate.js",
"migrate:create": "npm run migrate -- create -ext sql -dir /migrations",
"migrate:seed": "node ./scripts/seed.js",
"migrate:up": "npm run migrate -- up",
"migrate:down": "npm run migrate -- down 1"
},
"dependencies": {
"@sentry/node": "^10.27.0",
@@ -31,6 +29,7 @@
"morgan": "^1.10.1",
"mysql2": "^3.14.3",
"passport": "^0.7.0",
"passport-custom": "^1.1.1",
"passport-openidconnect": "^0.1.2"
},
"devDependencies": {
@@ -41,4 +40,4 @@
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3"
}
}
}