rsnext/examples/with-firebase-hosting/package.json

25 lines
667 B
JSON
Raw Normal View History

{
"private": true,
"main": "firebaseFunctions.js",
"scripts": {
"dev": "next src/",
"build": "next build src/",
"start": "next start src/",
"serve": "npm run build && firebase emulators:start --only functions,hosting",
"shell": "npm run build && firebase functions:shell",
"deploy": "firebase deploy --only functions,hosting",
"logs": "firebase functions:log"
},
"dependencies": {
"firebase-admin": "^9.4.2",
"firebase-functions": "^3.13.1",
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"firebase-functions-test": "^0.2.3",
"firebase-tools": "^9.3.0"
}
}