upgrade deps

This commit is contained in:
Kalle (Sendou)
2021-03-23 13:05:47 +02:00
parent 29d1a9f68f
commit a0bf6ca6fd
3 changed files with 411 additions and 415 deletions

790
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -23,49 +23,48 @@
"cy:install": "cypress install"
},
"dependencies": {
"@chakra-ui/react": "^1.3.4",
"@chakra-ui/theme-tools": "^1.1.0",
"@chakra-ui/react": "^1.4.1",
"@chakra-ui/theme-tools": "^1.1.1",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@hookform/resolvers": "1.3.0",
"@lingui/react": "^3.7.2",
"@prisma/client": "^2.18.0",
"@prisma/client": "^2.19.0",
"@sendou/react-sketch": "^0.5.2",
"@trpc/client": "^4.0.0",
"@trpc/react": "^4.0.0",
"@trpc/server": "^4.0.0",
"countries-list": "^2.6.1",
"focus-visible": "^5.2.0",
"framer-motion": "^3.10.5",
"framer-motion": "^4.0.0",
"next": "^10.0.9",
"next-auth": "^3.12.0",
"next-auth": "^3.13.2",
"next-images": "^1.7.0",
"next-seo": "^4.20.0",
"next-seo": "^4.22.0",
"nprogress": "^0.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-hook-form": "^6.14.2",
"react-hotkeys-hook": "^3.2.1",
"react-icons": "^4.2.0",
"react-infinite-scroller": "^1.2.4",
"react-markdown": "^4.3.1",
"react-query": "^3.12.2",
"react-select": "^4.2.1",
"react-query": "^3.13.0",
"react-select": "^4.3.0",
"react-string-replace": "^0.4.4",
"recharts": "^2.0.8",
"superjson": "^1.7.2",
"superjson": "^1.7.3",
"swr": "^0.4.2",
"ts-trueskill": "^3.2.0",
"uuid": "^8.3.2",
"zod": "^1.11.11"
"zod": "^1.11.13"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@lingui/cli": "^3.7.2",
"@lingui/macro": "^3.7.2",
"@types/micro": "^7.3.3",
"@types/next-auth": "^3.7.1",
"@types/next-auth": "^3.7.2",
"@types/node": "^14.14.35",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.3",
@@ -74,9 +73,9 @@
"@types/recharts": "^1.8.19",
"@types/uuid": "^8.3.0",
"cross-env": "^7.0.3",
"cypress": "^6.7.1",
"cypress": "^6.8.0",
"prettier": "^2.2.1",
"prisma": "^2.18.0",
"prisma": "^2.19.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},

View File

@@ -1,9 +1,10 @@
// @ts-nocheck
import { NextApiRequest, NextApiResponse } from "next";
import NextAuth, { InitOptions } from "next-auth";
import NextAuth, { NextAuthOptions } from "next-auth";
import Providers from "next-auth/providers";
import prisma from "prisma/client";
const options: InitOptions = {
const options: NextAuthOptions = {
providers: [
Providers.Discord({
clientId: process.env.DISCORD_CLIENT_ID!,