Skip to content

Commit

Permalink
chore(app): upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tericcabrel committed Jun 23, 2024
1 parent 0270bbb commit 159fdb2
Show file tree
Hide file tree
Showing 14 changed files with 2,120 additions and 1,507 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
shell: bash
run: |
corepack enable
yarn set version 4.2.2
yarn set version 4.3.1
- name: Install projects dependencies
shell: bash
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ jobs:

- name: Print Released Packages
id: releasedPackages
run: yarn changeset status --output=release.json
run: |
yarn changeset status --output=release.json
cat release.json
- name: Upload Release File
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Install Yarn 4
run: |
corepack enable
yarn set version 4.2.2
yarn set version 4.3.1
- name: Install Vercel CLI
run: npm install --global vercel@latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Yarn 4
run: |
corepack enable
yarn set version 4.2.2
yarn set version 4.3.1
- name: Install Vercel CLI
run: npm install --global vercel@latest
Expand Down
14 changes: 7 additions & 7 deletions apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,30 +22,30 @@
"dependencies": {
"@apollo/server": "4.10.4",
"@nestjs/apollo": "12.1.0",
"@nestjs/common": "10.3.8",
"@nestjs/common": "10.3.9",
"@nestjs/config": "3.2.2",
"@nestjs/core": "10.3.8",
"@nestjs/core": "10.3.9",
"@nestjs/graphql": "12.1.1",
"@nestjs/platform-express": "10.3.8",
"@nestjs/platform-express": "10.3.9",
"@prisma/client": "5.14.0",
"@sentry/node": "8.3.0",
"graphql": "16.8.1",
"@sentry/node": "8.11.0",
"graphql": "16.9.0",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"zod": "3.23.8"
},
"devDependencies": {
"@nestjs/cli": "10.3.2",
"@nestjs/schematics": "10.1.1",
"@nestjs/testing": "10.3.8",
"@nestjs/testing": "10.3.9",
"@ngneat/falso": "7.2.0",
"@types/express": "4.17.21",
"@types/supertest": "6.0.2",
"dotenv-cli": "7.4.2",
"source-map-support": "0.5.21",
"supertest": "7.0.0",
"ts-loader": "9.5.1",
"ts-morph": "22.0.0",
"ts-morph": "23.0.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0"
}
Expand Down
3 changes: 1 addition & 2 deletions apps/web/__tests__/ui/newsletter.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import { MockedProvider } from '@apollo/client/testing';
import { subscribeNewsletterMutation } from '@snipcode/front/graphql';
import { fireEvent, render, screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { act } from 'react-dom/test-utils';
import React, { act } from 'react';

import { NewsletterForm } from '@/components/home/newsletter/newsletter-form';

Expand Down
37 changes: 19 additions & 18 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,37 +12,38 @@
"postbuild": "next-sitemap --config next-sitemap.js"
},
"dependencies": {
"@apollo/client": "3.9.9",
"@headlessui/react": "1.7.18",
"@hookform/resolvers": "3.3.4",
"@sentry/nextjs": "7.108.0",
"@apollo/client": "3.10.6",
"@headlessui/react": "2.1.0",
"@hookform/resolvers": "3.6.0",
"@sentry/nextjs": "8.11.0",
"@snipcode/front": "workspace:*",
"@snipcode/utils": "workspace:*",
"classnames": "2.5.1",
"graphql": "16.8.1",
"next": "14.1.4",
"next": "14.2.4",
"next-seo": "6.5.0",
"react": "18.2.0",
"react-cookie": "7.1.0",
"react-dom": "18.2.0",
"react-hook-form": "7.51.1",
"react": "18.3.1",
"react-cookie": "7.1.4",
"react-dom": "18.3.1",
"react-hook-form": "7.52.0",
"yup": "1.4.0"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.7",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.2",
"@testing-library/dom": "10.1.0",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/react": "18.2.69",
"@types/react-dom": "18.2.22",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"eslint-config-next": "14.1.4",
"eslint-config-next": "14.2.4",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-jest-dom": "5.2.0",
"eslint-plugin-testing-library": "6.2.0",
"next-router-mock": "^0.9.12",
"eslint-plugin-jest-dom": "5.4.0",
"eslint-plugin-testing-library": "6.2.2",
"next-router-mock": "0.9.13",
"next-sitemap": "4.2.3",
"postcss": "8.4.38",
"tailwindcss": "3.4.1"
"tailwindcss": "3.4.4"
}
}
31 changes: 15 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,24 @@
}
},
"devDependencies": {
"@changesets/cli": "2.27.3",
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@changesets/cli": "2.27.5",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.0",
"@types/node": "20.11.16",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"@types/lodash": "4.17.5",
"@types/node": "20.14.8",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"babel-jest": "29.7.0",
"dotenv": "16.4.5",
"dotenv-cli": "7.4.2",
"eslint": "8.56.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-turbo": "2.0.3",
"eslint-config-turbo": "2.0.4",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-sort-destructure-keys": "1.5.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.2.0",
"husky": "9.0.11",
Expand All @@ -63,10 +63,9 @@
"jest-mock-extended": "3.0.7",
"msw": "2.3.1",
"prettier": "3.2.5",
"prisma": "5.11.0",
"ts-jest": "29.1.2",
"turbo": "1.13.3",
"typescript": "5.4.3"
"ts-jest": "29.1.5",
"turbo": "2.0.4",
"typescript": "5.5.2"
},
"packageManager": "yarn@4.2.2"
"packageManager": "yarn@4.3.1"
}
8 changes: 4 additions & 4 deletions packages/domain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
"unique-username-generator": "1.3.0"
},
"devDependencies": {
"@nestjs/common": "10.3.8",
"@nestjs/testing": "10.3.8",
"@nestjs/common": "10.3.9",
"@nestjs/testing": "10.3.9",
"@ngneat/falso": "7.2.0",
"@types/bcryptjs": "2.4.6",
"dotenv-cli": "7.4.2",
"mysql2": "3.10.0",
"mysql2": "3.10.1",
"nock": "13.5.4",
"prisma": "5.14.0",
"zx": "8.0.2"
"zx": "8.1.3"
}
}
8 changes: 4 additions & 4 deletions packages/embed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"devDependencies": {
"@snipcode/domain": "workspace:*",
"@types/express": "4.17.21",
"express": "4.19.1",
"nodemon": "2.0.22",
"express": "4.19.2",
"nodemon": "3.1.4",
"prettier-2": "npm:prettier@^2",
"serve": "14.2.1",
"serve": "14.2.3",
"shiki": "0.14.7",
"tsup": "8.0.2"
"tsup": "8.1.0"
}
}
20 changes: 10 additions & 10 deletions packages/front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@
"dependencies": {
"@headlessui/react": "1.7.18",
"@heroicons/react": "2.1.3",
"@hookform/resolvers": "3.3.4",
"@hookform/resolvers": "3.6.0",
"classnames": "2.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.51.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.52.0",
"react-simple-code-editor": "0.13.1",
"shiki": "0.14.7",
"yup": "1.4.0"
},
"devDependencies": {
"@apollo/client": "3.9.9",
"@apollo/client": "3.10.6",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/typescript": "4.0.6",
"@graphql-codegen/typescript-operations": "4.2.0",
"@graphql-codegen/typescript": "4.0.7",
"@graphql-codegen/typescript-operations": "4.2.1",
"@tailwindcss/forms": "0.5.7",
"@types/react": "18.2.69",
"@types/react-dom": "18.2.22",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"postcss": "8.4.38",
"tailwindcss": "3.4.1"
"tailwindcss": "3.4.4"
}
}
6 changes: 3 additions & 3 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
"test:watch": "jest --watch"
},
"dependencies": {
"dayjs": "1.11.10",
"dayjs": "1.11.11",
"jsonwebtoken": "9.0.2",
"lodash": "4.17.21",
"uuid": "9.0.1"
"uuid": "10.0.0"
},
"devDependencies": {
"@types/jsonwebtoken": "9.0.6",
"@types/uuid": "9.0.8"
"@types/uuid": "10.0.0"
}
}
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
".eslintrc.json",
".eslintignore"
],
"pipeline": {
"tasks": {
"prebuild": {
"outputs": []
},
Expand Down
Loading

0 comments on commit 159fdb2

Please sign in to comment.