forked from geelen/nextjs8-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 899 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
32
33
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "rm -rf .next && NODE_ENV=production next build",
"start": "fab-serve fab.zip",
"build:fab": "npm run build && npm run fab:compile",
"heroku-postbuild": "npm run build:fab",
"now-build": "npm run build:fab",
"fab:compile": "NODE_ENV=production fab-nextjs build --server=fab-server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fab/nextjs": "^0.1.2",
"@fab/serve": "^0.1.4",
"express": "^4.16.4",
"isomorphic-unfetch": "^3.0.0",
"next": "^8.0.3",
"node-fetch": "^2.6.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"route-parser": "^0.0.5",
"styled-components": "^4.1.3"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.10.0"
}
}