update dependencies

This commit is contained in:
Amruth Pillai
2023-04-04 23:47:02 +02:00
parent d62ddab140
commit 90a8610dd7
7 changed files with 3422 additions and 3214 deletions

View File

@ -9,75 +9,74 @@
},
"dependencies": {
"@beam-australia/react-env": "^3.1.1",
"@date-io/dayjs": "^2.16.0",
"@emotion/css": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@emotion/css": "^11.10.6",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@hello-pangea/dnd": "^16.2.0",
"@hookform/resolvers": "2.9.10",
"@hookform/resolvers": "3.0.0",
"@monaco-editor/react": "^4.4.6",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.116",
"@mui/material": "^5.11.5",
"@mui/system": "^5.11.5",
"@mui/x-date-pickers": "5.0.14",
"@react-oauth/google": "^0.6.0",
"@reduxjs/toolkit": "^1.9.1",
"axios": "^1.2.3",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.125",
"@mui/material": "^5.11.16",
"@mui/system": "^5.11.16",
"@mui/x-date-pickers": "6.0.4",
"@react-oauth/google": "^0.9.0",
"@reduxjs/toolkit": "^1.9.3",
"axios": "^1.3.4",
"clsx": "^1.2.1",
"dayjs": "^1.11.7",
"downloadjs": "^1.4.7",
"joi": "^17.7.0",
"joi": "^17.9.1",
"lodash": "^4.17.21",
"md5-hex": "^4.0.0",
"monaco-editor": "^0.34.1",
"monaco-editor": "^0.37.0",
"nanoid": "3.3.4",
"next": "13.1.2",
"next-i18next": "^13.0.3",
"next": "13.2.4",
"next-i18next": "^13.2.2",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.42.1",
"react-hook-form": "^7.43.9",
"react-hot-toast": "2.4.0",
"react-icons": "^4.7.1",
"react-markdown": "^8.0.5",
"react-query": "^3.39.2",
"react-icons": "^4.8.0",
"react-markdown": "^8.0.6",
"react-query": "^3.39.3",
"react-redux": "^8.0.5",
"react-zoom-pan-pinch": "^2.2.0",
"redux": "^4.2.0",
"react-zoom-pan-pinch": "^3.0.6",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.2",
"redux-saga": "^1.2.3",
"redux-undo": "^1.0.1",
"rehype-katex": "^6.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.31.3",
"sharp": "^0.32.0",
"uuid": "^9.0.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/core": "^7.21.4",
"@reactive-resume/schema": "workspace:*",
"@tailwindcss/typography": "^0.5.9",
"@types/downloadjs": "^1.4.3",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/react-redux": "^7.1.25",
"@types/uuid": "^9.0.0",
"@types/uuid": "^9.0.1",
"@types/webfontloader": "^1.6.35",
"autoprefixer": "^10.4.13",
"csstype": "^3.1.1",
"eslint-config-next": "^13.1.2",
"eslint-plugin-tailwindcss": "^3.8.0",
"autoprefixer": "^10.4.14",
"csstype": "^3.1.2",
"eslint-config-next": "^13.2.4",
"eslint-plugin-tailwindcss": "^3.10.3",
"eslint-plugin-unused-imports": "^2.0.0",
"next-sitemap": "^3.1.45",
"next-sitemap": "^4.0.6",
"postcss": "^8.4.21",
"sass": "^1.57.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
"sass": "^1.60.0",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.3"
}
}

View File

@ -1,8 +1,8 @@
import '@/styles/globals.scss';
import env from '@beam-australia/react-env';
import DayjsAdapter from '@date-io/dayjs';
import { LocalizationProvider } from '@mui/x-date-pickers';
import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs';
import { GoogleOAuthProvider } from '@react-oauth/google';
import type { AppProps } from 'next/app';
import Head from 'next/head';
@ -32,7 +32,7 @@ const App = ({ Component, pageProps }: AppProps): JSX.Element => (
</Head>
<ReduxProvider store={store}>
<LocalizationProvider dateAdapter={DayjsAdapter}>
<LocalizationProvider dateAdapter={AdapterDayjs}>
<PersistGate loading={null} persistor={persistor}>
<GoogleOAuthProvider clientId={env('GOOGLE_CLIENT_ID')}>
<QueryClientProvider client={queryClient}>

View File

@ -1,15 +1,69 @@
import { NextPage } from 'next';
import NextDocument, { DocumentContext, Head, Html, Main, NextScript } from 'next/document';
import Script from 'next/script';
const Document: NextPage = () => (
<Html lang="en">
<Head />
<Head>
<Script
id="google-tag-manager"
type="text/javascript"
strategy="afterInteractive"
dangerouslySetInnerHTML={{
__html: `(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-M9DK4S4');`,
}}
/>
<Script
id="logo-schema"
type="application/ld+json"
strategy="afterInteractive"
dangerouslySetInnerHTML={{
__html: `{
"@context": "https://schema.org",
"@type": "Organization",
"url": "https://rxresu.me",
"logo": "https://rxresu.me/images/logos/logo.svg"
}`,
}}
/>
<Script
id="software-application-schema"
type="application/ld+json"
strategy="afterInteractive"
dangerouslySetInnerHTML={{
__html: `{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Reactive Resume",
"operatingSystem": "Windows, macOS, Linux, Android, iOS",
"applicationCategory": "BrowserApplication",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5",
"ratingCount": "11394"
},
"offers": {
"@type": "Offer",
"price": "0"
}
}`,
}}
/>
</Head>
<body>
<Main />
<NextScript />
<script src="/__ENV.js" />
<noscript
dangerouslySetInnerHTML={{
__html: `<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M9DK4S4" height="0" width="0" style="display:none;visibility:hidden"></iframe>`,
}}
/>
</body>
</Html>
);

View File

@ -20,20 +20,20 @@
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"env-cmd": "^10.1.0",
"turbo": "^1.7.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^9.0.0",
"npm-check-updates": "^16.6.2",
"prettier": "^2.8.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"npm-check-updates": "^16.10.2",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
"turbo": "^1.8.8",
"typescript": "^5.0.3"
},
"resolutions": {
"@types/react": "17.0.2",

6415
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,7 @@
"build": "tsc"
},
"devDependencies": {
"eslint": "^8.32.0",
"typescript": "^4.9.4"
"eslint": "^8.37.0",
"typescript": "^5.0.3"
}
}

View File

@ -8,66 +8,66 @@
"start": "node dist/main"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.252.0",
"@nestjs/axios": "^1.0.1",
"@nestjs/common": "^9.2.1",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.2.1",
"@nestjs/jwt": "^10.0.1",
"@nestjs/mapped-types": "^1.2.0",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.2.1",
"@nestjs/schedule": "^2.1.0",
"@nestjs/serve-static": "^3.0.0",
"@nestjs/terminus": "^9.1.4",
"@aws-sdk/client-s3": "^3.306.0",
"@nestjs/axios": "^2.0.0",
"@nestjs/common": "^9.3.12",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.3.12",
"@nestjs/jwt": "^10.0.3",
"@nestjs/mapped-types": "^1.2.2",
"@nestjs/passport": "^9.0.3",
"@nestjs/platform-express": "^9.3.12",
"@nestjs/schedule": "^2.2.1",
"@nestjs/serve-static": "^3.0.1",
"@nestjs/terminus": "^9.2.2",
"@nestjs/typeorm": "^9.0.1",
"@types/passport": "^1.0.11",
"@types/passport": "^1.0.12",
"bcryptjs": "^2.4.3",
"cache-manager": "^5.1.4",
"cache-manager": "^5.2.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.0",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.6",
"csvtojson": "^2.0.10",
"dayjs": "^1.11.7",
"google-auth-library": "^8.7.0",
"joi": "^17.7.0",
"joi": "^17.9.1",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1",
"nanoid": "3.3.4",
"node-stream-zip": "^1.15.0",
"nodemailer": "^6.9.0",
"nodemailer": "^6.9.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pdf-lib": "^1.17.1",
"pg": "^8.8.0",
"playwright-chromium": "^1.29.2",
"pg": "^8.10.0",
"playwright-chromium": "^1.32.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.1.1",
"rimraf": "^4.4.1",
"rxjs": "^7.8.0",
"typeorm": "0.3.11",
"typeorm": "0.3.12",
"uuid": "^9.0.0"
},
"devDependencies": {
"@nestjs/cli": "^9.1.8",
"@nestjs/schematics": "^9.0.4",
"@nestjs/cli": "^9.3.0",
"@nestjs/schematics": "^9.1.0",
"@reactive-resume/schema": "workspace:*",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.15",
"@types/lodash": "^4.14.191",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.192",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.18",
"@types/node": "^18.15.11",
"@types/nodemailer": "^6.4.7",
"@types/passport-jwt": "^3.0.8",
"@types/passport-local": "^1.0.35",
"@types/uuid": "^9.0.0",
"prettier": "^2.8.3",
"@types/uuid": "^9.0.1",
"prettier": "^2.8.7",
"source-map-support": "^0.5.21",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0"
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.3",
"webpack": "^5.77.0"
}
}