Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 7ef9971

Browse files
authored
Bump everything (#18)
1 parent a9063ec commit 7ef9971

File tree

8 files changed

+8804
-6370
lines changed

8 files changed

+8804
-6370
lines changed

app/api.js

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import cookieParser from "cookie-parser";
55
import bodyParser from "body-parser";
66

77
import postRoutes from "./routes/post";
8-
import { runQuery } from "./helpers";
98
import { configPassport, findUserByUID } from "./auth";
109

1110
const app = express();

app/client/package-lock.json

+7,207-4,150
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/client/package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@
44
"private": true,
55
"dependencies": {
66
"classnames": "^2.2.6",
7-
"dgraph-js-http": "^0.2.0",
8-
"http-proxy-middleware": "^0.19.1",
9-
"lodash": "^4.17.11",
10-
"marked": "^0.6.2",
7+
"dgraph-js-http": "^20.3.0",
8+
"http-proxy-middleware": "^1.0.3",
9+
"lodash": "^4.17.15",
10+
"marked": "^1.0.0",
1111
"moment": "^2.24.0",
12-
"node-sass": "^4.11.0",
13-
"pluralize": "^7.0.0",
14-
"react": "^16.8.6",
15-
"react-dom": "^16.8.6",
16-
"react-highlight-words": "^0.14.0",
17-
"react-redux": "^6.0.1",
18-
"react-router-dom": "^4.3.1",
19-
"redux": "^4.0.1",
12+
"node-sass": "^4.14.0",
13+
"pluralize": "^8.0.0",
14+
"react": "^16.13.1",
15+
"react-dom": "^16.13.1",
16+
"react-highlight-words": "^0.16.0",
17+
"react-redux": "^7.2.0",
18+
"react-router-dom": "^5.1.2",
19+
"redux": "^4.0.5",
2020
"striptags": "^3.1.1",
21-
"superagent": "^4.1.0"
21+
"superagent": "^5.2.2"
2222
},
2323
"devDependencies": {
24-
"node-sass-chokidar": "^1.3.4",
24+
"node-sass-chokidar": "^1.4.0",
2525
"npm-run-all": "^4.1.5",
26-
"react-scripts": "^3.0.0"
26+
"react-scripts": "^3.4.1"
2727
},
2828
"scripts": {
2929
"build-css": "node-sass-chokidar src/ -o src/",

app/client/src/setupProxy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const proxy = require('http-proxy-middleware');
1+
const { createProxyMiddleware } = require('http-proxy-middleware');
22

33
module.exports = function(app) {
4-
app.use(proxy('/api', { target: 'http://localhost:3001/' }));
4+
app.use(createProxyMiddleware('/api', { target: 'http://localhost:3001/' }));
55
};

0 commit comments

Comments
 (0)