forked from muccy/next-js-to-firebase-article
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"main": "dist/server/index.js",
"engines": {
"node": "10"
},
"scripts": {
"dev:client": "next src/client",
"dev:server": "babel src/server --out-dir dist/server --source-maps --watch",
"dev": "npm run dev:client & npm run dev:server",
"build:client": "next build src/client",
"build:server": "babel src/server --out-dir dist/server --source-maps",
"build": "npm run build:client && npm run build:server",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=production firebase serve --only functions,hosting",
"predeploy": "rimraf dist/ && npm run build",
"deploy": "cross-env NODE_ENV=production firebase deploy --only functions,hosting"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"firebase-admin": "^8.10.0",
"firebase-functions": "^3.5.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.3.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-markdown": "^4.3.1",
"swr": "^0.1.18"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/node": "^13.9.2",
"@types/react": "^16.9.23",
"cross-env": "^7.0.2",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}