Skip to content

Commit

Permalink
chore(deps): to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
belgattitude committed Jun 21, 2024
1 parent 2ed2f98 commit 17d41fd
Show file tree
Hide file tree
Showing 11 changed files with 591 additions and 555 deletions.
6 changes: 3 additions & 3 deletions apps/nextjs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"@testing-library/user-event": "14.5.2",
"@types/cors": "2.8.17",
"@types/is-ci": "3.0.4",
"@types/node": "20.14.6",
"@types/node": "20.14.7",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-test-renderer": "18.3.0",
Expand All @@ -141,7 +141,7 @@
"es-check": "7.2.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-tailwindcss": "3.17.3",
"eslint-plugin-tailwindcss": "3.17.4",
"is-ci": "3.0.1",
"jsdom": "24.1.0",
"npm-run-all2": "6.2.0",
Expand All @@ -153,7 +153,7 @@
"rimraf": "5.0.7",
"size-limit": "11.1.4",
"tailwindcss": "3.4.4",
"typescript": "5.4.5",
"typescript": "5.5.2",
"vite": "5.3.1",
"vite-plugin-magical-svg": "1.2.1",
"vite-tsconfig-paths": "4.3.2",
Expand Down
4 changes: 2 additions & 2 deletions apps/vite-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
"@vitest/ui": "1.6.0",
"@your-org/eslint-config-bases": "workspace:^",
"eslint": "8.57.0",
"eslint-plugin-tailwindcss": "3.17.3",
"eslint-plugin-tailwindcss": "3.17.4",
"happy-dom": "14.12.3",
"prettier": "3.3.2",
"rimraf": "5.0.7",
"tailwindcss": "3.4.4",
"typescript": "5.4.5",
"typescript": "5.5.2",
"vite": "5.3.1",
"vite-plugin-svgr": "4.2.0",
"vite-tsconfig-paths": "4.3.2",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@
"shell-quote": "1.8.1",
"syncpack": "12.3.2",
"turbo": "2.0.4",
"typescript": "5.4.5"
"typescript": "5.5.2"
},
"engines": {
"node": ">=18.17.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"packageManager": "[email protected].0",
"packageManager": "[email protected].1",
"workspaces": [
"apps/*",
"packages/*"
Expand Down
4 changes: 2 additions & 2 deletions packages/common-i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"devDependencies": {
"@types/node": "20.14.6",
"@types/node": "20.14.7",
"@your-org/eslint-config-bases": "workspace:^",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"prettier": "3.3.2",
"rimraf": "5.0.7",
"typescript": "5.4.5"
"typescript": "5.5.2"
}
}
4 changes: 2 additions & 2 deletions packages/core-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@testing-library/dom": "10.1.0",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.14.6",
"@types/node": "20.14.7",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "4.3.1",
Expand All @@ -69,7 +69,7 @@
"react-dom": "18.3.1",
"rimraf": "5.0.7",
"tsup": "8.1.0",
"typescript": "5.4.5",
"typescript": "5.5.2",
"vite": "5.3.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.6.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/db-main-prisma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@pothos/plugin-prisma": "3.65.2",
"@prisma/client": "5.15.1",
"@soluble/dsn-parser": "1.9.2",
"@types/node": "20.14.6",
"@types/node": "20.14.7",
"@vitest/coverage-v8": "1.6.0",
"@vitest/ui": "1.6.0",
"@your-org/eslint-config-bases": "workspace:^",
Expand All @@ -60,8 +60,8 @@
"rimraf": "5.0.7",
"transliteration": "2.3.5",
"tsup": "8.1.0",
"tsx": "4.15.6",
"typescript": "5.4.5",
"tsx": "4.15.7",
"typescript": "5.5.2",
"vite": "5.3.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.6.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/db-main-prisma/src/prisma-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class PrismaManager {
PrismaManager.instances ??= {};
PrismaManager.instances[instanceKey] = prismaClientFactory();
}
return PrismaManager.instances[instanceKey]!;
return PrismaManager.instances[instanceKey];
} else {
// PrismaClient is attached to the `global` object in development to prevent
// exhausting your database connection limit.
Expand All @@ -46,7 +46,7 @@ export class PrismaManager {
'[PrismaFactory.createDevSafeInstance]: Dev instance created and preserved globally.'
);
}
return global.__PRISMA_INSTANCES__[instanceKey]!;
return global.__PRISMA_INSTANCES__[instanceKey];
}
}
}
16 changes: 8 additions & 8 deletions packages/eslint-config-bases/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,18 +66,18 @@
},
"dependencies": {
"@rushstack/eslint-patch": "^1.10.3",
"@tanstack/eslint-plugin-query": "^5.35.6",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@tanstack/eslint-plugin-query": "^5.43.1",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2 || 5.0.0-canary-7118f5dd7-20230705",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-sonarjs": "^0.25.1",
Expand Down Expand Up @@ -128,19 +128,19 @@
"@graphql-eslint/eslint-plugin": "3.20.1",
"@testing-library/dom": "10.1.0",
"@testing-library/react": "16.0.0",
"@types/node": "20.14.6",
"@types/node": "20.14.7",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"es-check": "7.2.1",
"eslint": "8.57.0",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-tailwindcss": "3.17.3",
"eslint-plugin-tailwindcss": "3.17.4",
"graphql": "16.8.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "5.0.7",
"tailwindcss": "3.4.4",
"typescript": "5.4.5"
"typescript": "5.5.2"
},
"engines": {
"node": ">=18.12.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/ts-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"devDependencies": {
"@size-limit/file": "11.1.4",
"@types/node": "20.14.6",
"@types/node": "20.14.7",
"@vitest/coverage-v8": "1.6.0",
"@your-org/eslint-config-bases": "workspace:^",
"cross-env": "7.0.3",
Expand All @@ -49,7 +49,7 @@
"size-limit": "11.1.4",
"tslib": "2.6.3",
"tsup": "8.1.0",
"typescript": "5.4.5",
"typescript": "5.5.2",
"vite": "5.3.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.6.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/ui-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.14.6",
"@types/node": "20.14.7",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vitest/coverage-v8": "1.6.0",
"@your-org/eslint-config-bases": "workspace:^",
"autoprefixer": "10.4.19",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-plugin-tailwindcss": "3.17.3",
"eslint-plugin-tailwindcss": "3.17.4",
"npm-run-all2": "6.2.0",
"postcss": "8.4.38",
"prettier": "3.3.2",
Expand All @@ -71,7 +71,7 @@
"storybook": "8.1.10",
"tailwindcss": "3.4.4",
"tsup": "8.1.0",
"typescript": "5.4.5",
"typescript": "5.5.2",
"vite": "5.3.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.6.0"
Expand Down
Loading

0 comments on commit 17d41fd

Please sign in to comment.