Files
oott/push_relay/package.json
T

32 lines
791 B
JSON
Raw Normal View History

{
"name": "oott-push-relay",
"version": "0.1.0",
"description": "Stateless relay that forwards OOTT push notifications to FCM/APNs.",
"license": "MIT",
"private": true,
"main": "lib/index.js",
"engines": {
"node": "22"
},
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit",
"test": "jest",
"serve": "npm run build && firebase emulators:start --only functions",
"deploy": "npm run build && firebase deploy --only functions"
},
"dependencies": {
"express": "^4.21.2",
"firebase-admin": "^13.0.2",
"firebase-functions": "^6.3.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}