32 lines
838 B
JSON
32 lines
838 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": "^5.7.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"pg": "^8.12.0",
|
|
"pino": "^9.3.2"
|
|
},
|
|
"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"
|
|
}
|
|
}
|