24 lines
521 B
JSON
24 lines
521 B
JSON
{
|
|
"name": "fcm-test-pwa",
|
|
"version": "1.0.0",
|
|
"description": "PWA for testing Firebase Cloud Messaging",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"firebase": "^10.7.1",
|
|
"firebase-admin": "^12.0.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
},
|
|
"keywords": ["pwa", "fcm", "firebase", "notifications"],
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|