-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 880 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "nextjs-firebase-fns-demo",
"version": "1.0.0",
"description": "Demo for serverless NextJS on Firebase Functions",
"repository": "https://github/johnapost/nextjs-firebase-fns-demo",
"author": "John Apostol",
"license": "MIT",
"scripts": {
"build:app": "next build src/app",
"build:functions": "cpx \"src/functions/**/*.*\" dist/functions",
"build:public": "cpx \"src/app/static/**/*.*\" dist/public/static",
"clean": "rimraf dist",
"copy:deps": "cpx \"*{package.json,package-lock.json}\" dist/functions",
"dev": "next src/app"
},
"dependencies": {
"firebase-admin": "7.2.0",
"firebase-functions": "2.2.1",
"next": "8.1.0",
"react": "16.8.6",
"react-dom": "16.8.6"
},
"engines": {
"node": "8"
},
"devDependencies": {
"cpx": "1.5.0",
"firebase-tools": "6.10.0",
"rimraf": "2.7.1"
}
}