- update version to v.3.6.11

- update dependencies to latest versions
This commit is contained in:
Amruth Pillai
2022-11-23 13:04:59 +01:00
parent 50f41f73d5
commit 3106f94989
5 changed files with 961 additions and 743 deletions

View File

@ -16,15 +16,15 @@
"@hello-pangea/dnd": "^16.0.1", "@hello-pangea/dnd": "^16.0.1",
"@hookform/resolvers": "2.9.10", "@hookform/resolvers": "2.9.10",
"@monaco-editor/react": "^4.4.6", "@monaco-editor/react": "^4.4.6",
"@mui/icons-material": "^5.10.9", "@mui/icons-material": "^5.10.15",
"@mui/lab": "^5.0.0-alpha.107", "@mui/lab": "^5.0.0-alpha.109",
"@mui/material": "^5.10.13", "@mui/material": "^5.10.15",
"@mui/system": "^5.10.13", "@mui/system": "^5.10.15",
"@mui/x-date-pickers": "5.0.8", "@mui/x-date-pickers": "5.0.8",
"@next/env": "^13.0.3", "@next/env": "^13.0.4",
"@react-oauth/google": "^0.4.0", "@react-oauth/google": "^0.5.0",
"@reduxjs/toolkit": "^1.9.0", "@reduxjs/toolkit": "^1.9.0",
"axios": "^1.1.3", "axios": "^1.2.0",
"clsx": "^1.2.1", "clsx": "^1.2.1",
"dayjs": "^1.11.6", "dayjs": "^1.11.6",
"downloadjs": "^1.4.7", "downloadjs": "^1.4.7",
@ -33,14 +33,14 @@
"md5-hex": "^4.0.0", "md5-hex": "^4.0.0",
"monaco-editor": "^0.34.1", "monaco-editor": "^0.34.1",
"nanoid": "^3.3.4", "nanoid": "^3.3.4",
"next": "13.0.3", "next": "13.0.4",
"next-i18next": "^12.1.0", "next-i18next": "^13.0.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-colorful": "^5.6.1", "react-colorful": "^5.6.1",
"react-dnd": "16.0.1", "react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1", "react-dnd-html5-backend": "16.0.1",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-hook-form": "^7.39.3", "react-hook-form": "^7.39.5",
"react-hot-toast": "2.4.0", "react-hot-toast": "2.4.0",
"react-icons": "^4.6.0", "react-icons": "^4.6.0",
"react-markdown": "^8.0.3", "react-markdown": "^8.0.3",
@ -62,22 +62,22 @@
"eslint-plugin-unused-imports": "^2.0.0", "eslint-plugin-unused-imports": "^2.0.0",
"@tailwindcss/typography": "^0.5.8", "@tailwindcss/typography": "^0.5.8",
"@types/downloadjs": "^1.4.3", "@types/downloadjs": "^1.4.3",
"@types/lodash": "^4.14.188", "@types/lodash": "^4.14.189",
"@types/node": "^18.11.9", "@types/node": "^18.11.9",
"@types/react": "^18.0.25", "@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8", "@types/react-dom": "^18.0.9",
"@types/react-redux": "^7.1.24", "@types/react-redux": "^7.1.24",
"@types/tailwindcss": "^3.0.11", "@types/tailwindcss": "^3.0.11",
"@types/uuid": "^8.3.4", "@types/uuid": "^8.3.4",
"@types/webfontloader": "^1.6.35", "@types/webfontloader": "^1.6.35",
"autoprefixer": "^10.4.13", "autoprefixer": "^10.4.13",
"csstype": "^3.1.1", "csstype": "^3.1.1",
"eslint-config-next": "^13.0.3", "eslint-config-next": "^13.0.4",
"eslint-plugin-tailwindcss": "^3.6.2", "eslint-plugin-tailwindcss": "^3.7.0",
"next-sitemap": "^3.1.31", "next-sitemap": "^3.1.32",
"postcss": "^8.4.19", "postcss": "^8.4.19",
"sass": "^1.56.1", "sass": "^1.56.1",
"tailwindcss": "^3.2.4", "tailwindcss": "^3.2.4",
"typescript": "^4.8.4" "typescript": "^4.9.3"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "reactive-resume", "name": "reactive-resume",
"version": "3.6.10", "version": "3.6.11",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "env-cmd --silent turbo run dev", "dev": "env-cmd --silent turbo run dev",
@ -20,14 +20,14 @@
"turbo": "^1.6.3" "turbo": "^1.6.3"
}, },
"devDependencies": { "devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.42.1", "@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.27.0", "eslint": "^8.28.0",
"eslint-plugin-import": "^2.26.0", "eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^8.0.0", "eslint-plugin-simple-import-sort": "^8.0.0",
"prettier": "^2.7.1", "prettier": "^2.8.0",
"standard-version": "^9.5.0", "standard-version": "^9.5.0",
"typescript": "^4.8.4" "typescript": "^4.9.3"
}, },
"resolutions": { "resolutions": {
"@types/react": "17.0.2", "@types/react": "17.0.2",

1644
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,7 @@
"build": "tsc" "build": "tsc"
}, },
"devDependencies": { "devDependencies": {
"eslint": "^8.27.0", "eslint": "^8.28.0",
"typescript": "^4.8.4" "typescript": "^4.9.3"
} }
} }

View File

@ -8,7 +8,7 @@
"start": "node dist/main" "start": "node dist/main"
}, },
"dependencies": { "dependencies": {
"@aws-sdk/client-s3": "^3.209.0", "@aws-sdk/client-s3": "^3.216.0",
"@nestjs/axios": "^1.0.0", "@nestjs/axios": "^1.0.0",
"@nestjs/common": "^9.2.0", "@nestjs/common": "^9.2.0",
"@nestjs/config": "^2.2.0", "@nestjs/config": "^2.2.0",
@ -19,7 +19,7 @@
"@nestjs/platform-express": "^9.2.0", "@nestjs/platform-express": "^9.2.0",
"@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.1.2", "@nestjs/terminus": "^9.1.3",
"@nestjs/typeorm": "^9.0.1", "@nestjs/typeorm": "^9.0.1",
"@types/passport": "^1.0.11", "@types/passport": "^1.0.11",
"bcryptjs": "^2.4.3", "bcryptjs": "^2.4.3",
@ -41,7 +41,7 @@
"passport-local": "^1.0.0", "passport-local": "^1.0.0",
"pdf-lib": "^1.17.1", "pdf-lib": "^1.17.1",
"pg": "^8.8.0", "pg": "^8.8.0",
"playwright-chromium": "^1.27.1", "playwright-chromium": "^1.28.0",
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rxjs": "^7.5.7", "rxjs": "^7.5.7",
@ -55,18 +55,18 @@
"@types/bcryptjs": "^2.4.2", "@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3", "@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14", "@types/express": "^4.17.14",
"@types/lodash": "^4.14.188", "@types/lodash": "^4.14.189",
"@types/multer": "^1.4.7", "@types/multer": "^1.4.7",
"@types/node": "^18.11.9", "@types/node": "^18.11.9",
"@types/nodemailer": "^6.4.6", "@types/nodemailer": "^6.4.6",
"@types/passport-jwt": "^3.0.7", "@types/passport-jwt": "^3.0.7",
"@types/passport-local": "^1.0.34", "@types/passport-local": "^1.0.34",
"prettier": "^2.7.1", "prettier": "^2.8.0",
"source-map-support": "^0.5.21", "source-map-support": "^0.5.21",
"ts-loader": "^9.4.1", "ts-loader": "^9.4.1",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0", "tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4", "typescript": "^4.9.3",
"webpack": "^5.75.0" "webpack": "^5.75.0"
} }
} }