1fdc87f7f4
- Created Mode1 as self-contained test environment - Added auth-module copy with self-contained configuration - Implemented backend server with Graph token and PocketBase validation endpoints - Added frontend test dashboard with token comparison functionality - Fixed TypeScript compatibility issues (replaced import.meta.dir with __dirname) - Implemented actual PB token validation in comparison endpoint (no placeholders) - All endpoints tested and working with real tokens
27 lines
540 B
JSON
27 lines
540 B
JSON
{
|
|
"name": "mode1-auth-test",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "bun run backend/server.ts",
|
|
"dev": "bun --watch backend/server.ts",
|
|
"build": "vite build",
|
|
"prebuild": "vite build"
|
|
},
|
|
"dependencies": {
|
|
"@azure/msal-node": "^5.0.2",
|
|
"dotenv": "^17.2.3",
|
|
"hono": "^4.10.8",
|
|
"pocketbase": "^0.26.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"typescript": "^5",
|
|
"vite": "^7.3.1"
|
|
},
|
|
"peerDependencies": {
|
|
"bun": "latest"
|
|
}
|
|
}
|