- Add Tenants module to Identity Gateway - Update Dashboard Auth context and components - Refactor token service and user/role controllers - Add Quadlet container definitions for dev environment
35 lines
940 B
JSON
35 lines
940 B
JSON
{
|
|
"name": "identity-gateway",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Internal identity gateway for multi-service SaaS platforms",
|
|
"type": "commonjs",
|
|
"scripts": {
|
|
"dev": "ts-node-dev --respawn --transpile-only src/main.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/main.js",
|
|
"lint": "eslint . --ext .ts"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cookie": "^11.0.2",
|
|
"@fastify/cors": "^11.2.0",
|
|
"@fastify/swagger": "^9.6.1",
|
|
"@fastify/swagger-ui": "^5.2.3",
|
|
"ajv-formats": "^3.0.1",
|
|
"bcryptjs": "^2.4.3",
|
|
"dotenv": "^16.4.5",
|
|
"fastify": "^5.6.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"pg": "^8.12.0",
|
|
"pino": "^8.19.0",
|
|
"pino-pretty": "^11.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/jsonwebtoken": "^9.0.6",
|
|
"@types/pg": "^8.11.6",
|
|
"eslint": "^9.6.0",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.5.3"
|
|
}
|
|
}
|