Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

Upgrade server packages #268

Merged
merged 1 commit into from
Sep 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
},
"dependencies": {
"@nexus/schema": "^0.15.0",
"@sendgrid/mail": "^7.2.5",
"apollo-server": "^2.17.0",
"@sendgrid/mail": "^7.2.6",
"apollo-server": "^2.18.1",
"axios": "^0.20.0",
"azure-storage": "^2.10.3",
"bcrypt": "^5.0.0",
Expand All @@ -42,51 +42,51 @@
"graphql-iso-date": "^3.6.1",
"graphql-middleware": "^4.0.2",
"graphql-relay": "^0.6.0",
"graphql-shield": "^7.3.5",
"graphql-shield": "^7.3.6",
"graphql-subscriptions": "^1.1.0",
"i18next": "^19.7.0",
"i18next-express-middleware": "^2.0.0",
"i18next-node-fs-backend": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"nexus": "^0.26.1",
"nexus-plugin-prisma": "^0.18.1",
"nexus-plugin-prisma": "^0.19.0",
"node-rsa": "^1.1.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/ejs": "^3.0.4",
"@types/express": "^4.17.8",
"@types/graphql-iso-date": "^3.4.0",
"@types/jest": "^26.0.13",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "8.5.0",
"@types/multer": "^1.4.4",
"@types/node": "^14.6.4",
"@types/node": "^14.11.2",
"@types/node-rsa": "^1.0.0",
"@types/ws": "7.2.6",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-ws": "^1.0.20",
"dotenv": "^8.2.0",
"dotenv-cli": "^3.2.0",
"eslint": "^7.8.1",
"dotenv-cli": "^4.0.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"graphql-request": "^3.0.0",
"graphql-request": "^3.1.0",
"graphql-tag": "^2.11.0",
"jest": "26.4.2",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"ts-node": "9.0.0",
"ts-node-dev": "1.0.0-pre.62",
"typescript": "^4.0.2"
"ts-node-dev": "1.0.0-pre.63",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=10.0.0"
Expand Down
4 changes: 4 additions & 0 deletions server/tests/setup/testSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ import { createApp } from '../../src/app';
import { exec } from 'child_process';
import express from 'express';
import { startServer } from '../../src/server';
import { Headers } from 'cross-fetch';

// @ts-ignore
global.Headers = global.Headers || Headers;

const prisma = new PrismaClient();
const port = 4000;
Expand Down
Loading