keycloak-reg-api/package.json
Thomas E Lackey d369ddbeaf Add e-mail verification. (#1)
Reviewed-on: #1
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2023-09-13 21:09:06 +00:00

37 lines
1.1 KiB
JSON

{
"name": "keycloak-userreg",
"version": "0.1.0",
"description": "keycloak user registration",
"main": "./src/index.js",
"dependencies": {
"@keycloak/keycloak-admin-client": "^22.0.1",
"debug": "^4.3.4",
"http-request-handler": "^2.0.1",
"nodemailer": "^6.9.5",
"randomstring": "^1.3.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^18.7.6",
"@types/nodemailer": "^6.4.10",
"@types/randomstring": "^1.1.8",
"@types/request": "^2.48.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"start": "DEBUG='cerc:keycloak-userreg:*' node dist/userreg.js",
"dev": "DEBUG='cerc:keycloak-userreg:*' ts-node src/userreg.ts",
"clean": "rm -rf dist",
"build": "rm -rf dist && tsc && cp -rpf src/template dist",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"type": "module",
"author": "cerc.io"
}