core/identity-gateway/package.json
Tiago Yamamoto a52bd4519d refactor: optimize Dockerfiles and documentation for core services
- Use Google Distroless images for all services (Go & Node.js).
- Standardize documentation with [PROJECT-NAME].md.
- Add .dockerignore and .gitignore to all projects.
- Remove docker-compose.yml in favor of docker run instructions.
- Fix Go version and dependency issues in observability, repo-integrations, and security-governance.
- Add Podman support (fully qualified image names).
- Update Dashboard to use Node.js static server for Distroless compatibility.
2025-12-30 13:22:34 -03:00

32 lines
No EOL
839 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": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"@fastify/cookie": "^9.3.1",
"jsonwebtoken": "^9.0.2",
"pg": "^8.12.0",
"pino": "^8.19.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.10",
"@types/pg": "^8.11.6",
"eslint": "^9.6.0",
"pino-pretty": "^11.2.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
}
}