You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
667 B
24 lines
667 B
{
|
|
"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"
|
|
}
|
|
}
|
|
|