Initial
Showing
.firebaserc
0 → 100644
firebase.json
0 → 100644
next.config.js
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
... | ... | @@ -3,13 +3,27 @@ |
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"clean": "rimraf nextjs/", | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start" | ||
"start": "next start", | ||
"predeploy": "npm run clean && next build", | ||
"deploy": "firebase deploy --only functions,hosting" | ||
}, | ||
"dependencies": { | ||
"firebase-admin": "~8.12.1", | ||
"firebase-functions": "~3.6.2", | ||
"next": "9.3.5", | ||
"react": "16.13.1", | ||
"react-dom": "16.13.1" | ||
}, | ||
"devDependencies": { | ||
"firebase-functions-test": "~0.2.1", | ||
"rimraf": "~3.0.2", | ||
"shelljs": "~0.8.4" | ||
}, | ||
"main": "server.js", | ||
"engines": { | ||
"node": "10" | ||
} | ||
} |
public/index.html
0 → 100644
server.js
0 → 100644
Please register or sign in to comment