-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1005 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1005 Bytes
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
{
"name": "github-api-react-client",
"version": "1.0.0",
"description": "Github api client with react and next.js",
"license": "MIT",
"scripts": {
"dev": "PORT=3001 node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js -p $PORT",
"test": "jest",
"heroku-postbuild": "yarn build"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"file-loader": "^2.0.0",
"http-proxy-middleware": "^0.19.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^7.0.2",
"node-sass": "^4.9.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.82.5",
"styled-components": "^3.4.10",
"url-loader": "^1.1.2"
},
"devDependencies": {
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint-loader": "^2.1.1",
"jest": "^23.6.0"
}
}