Files
notification-wakeup-service/package.json
Jose Olarte III 7a2bb88207 feat(config): load .env and log Firebase credential source at startup
Add dotenv via src/env.ts so dev/start read .env before Firebase init,
and log whether credentials come from FIREBASE_SERVICE_ACCOUNT_JSON or ADC.
2026-06-11 17:50:16 +08:00

32 lines
726 B
JSON

{
"name": "notification-wakeup-service",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.4.0",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"build": "tsc"
},
"dependencies": {
"@peculiar/asn1-ecc": "^2.7.0",
"@peculiar/asn1-schema": "^2.7.0",
"cbor-x": "^1.6.4",
"cors": "^2.8.6",
"dotenv": "^16.6.1",
"did-jwt": "^7.4.7",
"did-resolver": "^4.1.0",
"express": "^5.2.1",
"firebase-admin": "^13.10.0",
"tsx": "^4.22.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.19.19",
"@types/cors": "^2.8.19",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}