chore(dependencies): ⬆️ upgrading dependencies to latest versions

This commit is contained in:
Amruth Pillai
2022-08-04 16:10:33 +02:00
parent 95d265f672
commit 331346b99c
8 changed files with 1167 additions and 1150 deletions

View File

@ -86,6 +86,8 @@ const LoginModal: React.FC = () => {
}; };
const handleLoginWithGoogle = async () => { const handleLoginWithGoogle = async () => {
console.log(process.env.PUBLIC_GOOGLE_CLIENT_ID, env('GOOGLE_CLIENT_ID'));
google.accounts.id.initialize({ google.accounts.id.initialize({
auto_select: true, auto_select: true,
itp_support: true, itp_support: true,

View File

@ -10,15 +10,15 @@
"dependencies": { "dependencies": {
"@beam-australia/react-env": "^3.1.1", "@beam-australia/react-env": "^3.1.1",
"@date-io/dayjs": "^2.14.0", "@date-io/dayjs": "^2.14.0",
"@emotion/css": "^11.9.0", "@emotion/css": "^11.10.0",
"@emotion/react": "^11.9.3", "@emotion/react": "^11.10.0",
"@emotion/styled": "^11.9.3", "@emotion/styled": "^11.10.0",
"@hookform/resolvers": "2.9.7", "@hookform/resolvers": "2.9.7",
"@monaco-editor/react": "^4.4.5", "@monaco-editor/react": "^4.4.5",
"@mui/icons-material": "^5.8.4", "@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.92", "@mui/lab": "^5.0.0-alpha.93",
"@mui/material": "^5.9.2", "@mui/material": "^5.9.3",
"@mui/system": "^5.9.2", "@mui/system": "^5.9.3",
"@mui/x-date-pickers": "5.0.0-beta.3", "@mui/x-date-pickers": "5.0.0-beta.3",
"@next/env": "^12.2.3", "@next/env": "^12.2.3",
"@reduxjs/toolkit": "^1.8.3", "@reduxjs/toolkit": "^1.8.3",
@ -56,12 +56,12 @@
"webfontloader": "^1.6.28" "webfontloader": "^1.6.28"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.18.9", "@babel/core": "^7.18.10",
"@reactive-resume/schema": "workspace:*", "@reactive-resume/schema": "workspace:*",
"@tailwindcss/typography": "^0.5.4", "@tailwindcss/typography": "^0.5.4",
"@types/downloadjs": "^1.4.3", "@types/downloadjs": "^1.4.3",
"@types/lodash": "^4.14.182", "@types/lodash": "^4.14.182",
"@types/node": "18.6.2", "@types/node": "18.6.3",
"@types/react": "18.0.15", "@types/react": "18.0.15",
"@types/react-beautiful-dnd": "^13.1.2", "@types/react-beautiful-dnd": "^13.1.2",
"@types/react-redux": "^7.1.24", "@types/react-redux": "^7.1.24",
@ -70,12 +70,12 @@
"@types/webfontloader": "^1.6.34", "@types/webfontloader": "^1.6.34",
"autoprefixer": "^10.4.8", "autoprefixer": "^10.4.8",
"csstype": "^3.1.0", "csstype": "^3.1.0",
"eslint": "^8.20.0", "eslint": "^8.21.0",
"eslint-config-next": "12.2.3", "eslint-config-next": "12.2.3",
"next-sitemap": "^3.1.15", "next-sitemap": "^3.1.16",
"postcss": "^8.4.14", "postcss": "^8.4.14",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"sass": "^1.54.0", "sass": "^1.54.2",
"tailwindcss": "^3.1.7", "tailwindcss": "^3.1.7",
"typescript": "^4.7.4" "typescript": "^4.7.4"
} }

View File

@ -4,6 +4,8 @@ services:
postgres: postgres:
image: postgres:14.2-alpine image: postgres:14.2-alpine
container_name: postgres container_name: postgres
ports:
- 5432:5432
environment: environment:
- POSTGRES_DB=postgres - POSTGRES_DB=postgres
- POSTGRES_USER=postgres - POSTGRES_USER=postgres

View File

@ -15,8 +15,8 @@
}, },
"dependencies": { "dependencies": {
"@algolia/client-search": "^4.14.2", "@algolia/client-search": "^4.14.2",
"@docusaurus/core": "2.0.0-rc.1", "@docusaurus/core": "2.0.1",
"@docusaurus/preset-classic": "2.0.0-rc.1", "@docusaurus/preset-classic": "2.0.1",
"@mdx-js/react": "^1.6.22", "@mdx-js/react": "^1.6.22",
"clsx": "^1.2.1", "clsx": "^1.2.1",
"prism-react-renderer": "^1.3.5", "prism-react-renderer": "^1.3.5",

View File

@ -38,10 +38,10 @@
"env-cmd": "^10.1.0" "env-cmd": "^10.1.0"
}, },
"devDependencies": { "devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0", "@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.31.0", "@typescript-eslint/parser": "^5.32.0",
"cz-conventional-changelog": "^3.3.0", "cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0", "eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0", "eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0", "eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1", "eslint-plugin-prettier": "^4.2.1",

2265
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,7 @@
"lint": "eslint --fix --ext .ts ./src" "lint": "eslint --fix --ext .ts ./src"
}, },
"devDependencies": { "devDependencies": {
"eslint": "^8.20.0", "eslint": "^8.21.0",
"typescript": "^4.7.4" "typescript": "^4.7.4"
} }
} }

View File

@ -10,18 +10,18 @@
"lint": "eslint --fix --ext .ts ./src" "lint": "eslint --fix --ext .ts ./src"
}, },
"dependencies": { "dependencies": {
"@aws-sdk/client-s3": "^3.137.0", "@aws-sdk/client-s3": "^3.142.0",
"@nestjs/axios": "^0.1.0", "@nestjs/axios": "^0.1.0",
"@nestjs/common": "^9.0.7", "@nestjs/common": "^9.0.8",
"@nestjs/config": "^2.2.0", "@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.7", "@nestjs/core": "^9.0.8",
"@nestjs/jwt": "^9.0.0", "@nestjs/jwt": "^9.0.0",
"@nestjs/mapped-types": "^1.1.0", "@nestjs/mapped-types": "^1.1.0",
"@nestjs/passport": "^9.0.0", "@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.0.7", "@nestjs/platform-express": "^9.0.8",
"@nestjs/schedule": "^2.1.0", "@nestjs/schedule": "^2.1.0",
"@nestjs/serve-static": "^3.0.0", "@nestjs/serve-static": "^3.0.0",
"@nestjs/terminus": "^9.0.0", "@nestjs/terminus": "^9.1.0",
"@nestjs/typeorm": "^9.0.0", "@nestjs/typeorm": "^9.0.0",
"@sendgrid/mail": "^7.7.0", "@sendgrid/mail": "^7.7.0",
"@types/passport": "^1.0.9", "@types/passport": "^1.0.9",
@ -59,8 +59,8 @@
"@types/express": "^4.17.13", "@types/express": "^4.17.13",
"@types/lodash": "^4.14.182", "@types/lodash": "^4.14.182",
"@types/multer": "^1.4.7", "@types/multer": "^1.4.7",
"@types/node": "^18.6.2", "@types/node": "^18.6.3",
"eslint": "^8.20.0", "eslint": "^8.21.0",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"source-map-support": "^0.5.21", "source-map-support": "^0.5.21",
"ts-loader": "^9.3.1", "ts-loader": "^9.3.1",