Files
auth/package.json
T
2026-09-10 13:33:58 +02:00

38 lines
1003 B
JSON

{
"name": "oidc-express-demo",
"version": "1.0.0",
"description": "Simple example of OIDC using express",
"keywords": [
"oidc",
"auth"
],
"repository": {
"type": "git",
"url": "https://git.janishutz.com/janishutz-account/auth"
},
"license": "GPL-3.0-or-later",
"author": "Janis Hutz",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@types/cors": "^2.8.19",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-openid-connect": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/express": "^5.0.6",
"@types/node": "^22.20.2",
"eslint": "^10.10.0",
"eslint-plugin-vue": "^10.11.0",
"globals": "^17.12.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.70.0"
}
}