Skip to content

Commit 50ee6e1

Browse files
committed
chore: update dependencies (while keeping under Prisma 7)
1 parent 6fc9684 commit 50ee6e1

18 files changed

Lines changed: 1608 additions & 4338 deletions

File tree

apps/admin/next-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
import "./.next/types/routes.d.ts";
34

45
// NOTE: This file should not be edited
56
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

apps/admin/next.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
const nextConfig = {
44
reactStrictMode: true,
5-
serverRuntimeConfig: {
6-
PROJECT_ROOT: __dirname,
7-
},
5+
transpilePackages: ["config", "db", "eslint-config-custom", "next-auth-prisma-adapter", "ra-data-simple-prisma"],
86
};
97

108
module.exports = nextConfig;

apps/admin/package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,29 @@
1010
"kill": "kill -9 $(lsof -t -i:3020)"
1111
},
1212
"dependencies": {
13-
"@babel/core": "7.26.10",
14-
"@mui/icons-material": "^5.15.14",
15-
"@mui/material": "^5.15.14",
16-
"@mui/styles": "^5.15.14",
13+
"@babel/core": "7.29.0",
14+
"@mui/icons-material": "^7.3.9",
15+
"@mui/material": "^7.3.9",
16+
"@mui/styles": "^6.4.8",
1717
"@prisma/extension-read-replicas": "^0.4.1",
18-
"axios": "^1.13.2",
18+
"axios": "^1.13.6",
1919
"db": "workspace:*",
20-
"lodash": "^4.17.21",
21-
"next": "15.3.0",
22-
"next-auth": "^4.24.11",
20+
"lodash": "^4.17.23",
21+
"next": "16.1.6",
22+
"next-auth": "^4.24.13",
2323
"next-auth-prisma-adapter": "workspace:*",
2424
"ra-data-simple-prisma": "workspace:*",
25-
"react": "18.3.1",
26-
"react-admin": "^5.7.2",
27-
"react-dom": "18.3.1",
28-
"react-json-view-lite": "^2.4.1"
25+
"react": "19.2.4",
26+
"react-admin": "^5.14.4",
27+
"react-dom": "19.2.4",
28+
"react-json-view-lite": "^2.5.0"
2929
},
3030
"devDependencies": {
31-
"@types/lodash": "^4.17.16",
32-
"@types/node": "22.14.1",
33-
"@types/react": "18.3.12",
34-
"@types/react-dom": "18.3.1",
31+
"@types/lodash": "^4.17.24",
32+
"@types/node": "25.5.0",
33+
"@types/react": "19.2.14",
34+
"@types/react-dom": "19.2.3",
3535
"eslint-config-custom": "workspace:*",
36-
"typescript": "5.8.3"
36+
"typescript": "5.9.3"
3737
}
3838
}

apps/admin/tsconfig.json

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4-
"lib": [
5-
"dom",
6-
"dom.iterable",
7-
"esnext"
8-
],
4+
"lib": ["dom", "dom.iterable", "esnext"],
95
"allowJs": true,
106
"skipLibCheck": true,
117
"strict": true,
@@ -16,21 +12,14 @@
1612
"moduleResolution": "node",
1713
"resolveJsonModule": true,
1814
"isolatedModules": true,
19-
"jsx": "preserve",
15+
"jsx": "react-jsx",
2016
"incremental": true,
2117
"plugins": [
2218
{
2319
"name": "next"
2420
}
2521
]
2622
},
27-
"include": [
28-
"next-env.d.ts",
29-
"**/*.ts",
30-
"**/*.tsx",
31-
".next/types/**/*.ts"
32-
],
33-
"exclude": [
34-
"node_modules"
35-
]
23+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", ".next/dev/types/**/*.ts"],
24+
"exclude": ["node_modules"]
3625
}

apps/website/next-env.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
import "./.next/types/routes.d.ts";
34

45
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
6+
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

apps/website/next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
const nextConfig = {
44
reactStrictMode: true,
5+
transpilePackages: ["config", "db", "eslint-config-custom", "next-auth-prisma-adapter", "ra-data-simple-prisma"],
56
};
67

78
module.exports = nextConfig;

apps/website/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@
1010
"kill": "kill -9 $(lsof -t -i:3021)"
1111
},
1212
"dependencies": {
13-
"@babel/core": "7.26.10",
14-
"@mui/icons-material": "^5.15.14",
15-
"@mui/material": "^5.15.14",
16-
"@mui/styles": "^5.15.14",
13+
"@babel/core": "7.29.0",
14+
"@mui/icons-material": "^7.3.9",
15+
"@mui/material": "^7.3.9",
16+
"@mui/styles": "^6.4.8",
1717
"config": "workspace:*",
1818
"db": "workspace:*",
19-
"next": "15.3.0",
20-
"next-auth": "^4.24.11",
21-
"react": "19.1.0",
22-
"react-dom": "19.1.0"
19+
"next": "16.1.6",
20+
"next-auth": "^4.24.13",
21+
"react": "19.2.4",
22+
"react-dom": "19.2.4"
2323
},
2424
"devDependencies": {
25-
"@types/node": "22.14.1",
26-
"@types/react": "19.1.1",
27-
"@types/react-dom": "19.1.2",
25+
"@types/node": "25.5.0",
26+
"@types/react": "19.2.14",
27+
"@types/react-dom": "19.2.3",
2828
"babel-plugin-superjson-next": "^0.4.5",
2929
"eslint-config-custom": "workspace:*",
30-
"superjson": "^1.9.0",
31-
"typescript": "5.8.3"
30+
"superjson": "^2.2.6",
31+
"typescript": "5.9.3"
3232
}
3333
}

apps/website/tsconfig.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4-
"lib": ["dom", "dom.iterable", "esnext"],
4+
"lib": [
5+
"dom",
6+
"dom.iterable",
7+
"esnext"
8+
],
59
"allowJs": true,
610
"skipLibCheck": true,
711
"strict": true,
@@ -12,9 +16,15 @@
1216
"moduleResolution": "node",
1317
"resolveJsonModule": true,
1418
"isolatedModules": true,
15-
"jsx": "preserve",
19+
"jsx": "react-jsx",
1620
"incremental": true
1721
},
18-
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
19-
"exclude": ["node_modules"]
22+
"include": [
23+
"next-env.d.ts",
24+
"**/*.ts",
25+
"**/*.tsx"
26+
],
27+
"exclude": [
28+
"node_modules"
29+
]
2030
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
],
99
"scripts": {
1010
"test": "turbo run test",
11-
"dev": "turbo run dev --parallel --no-cache",
11+
"dev": "turbo run dev --parallel --cache=local:r,remote:r",
1212
"build": "turbo run build",
1313
"kill": "pnpm run kill --filter apps/*"
1414
},
1515
"devDependencies": {
16-
"turbo": "^2.5.6"
16+
"turbo": "^2.8.16"
1717
},
18-
"packageManager": "pnpm@10.8.0"
18+
"packageManager": "pnpm@10.32.1"
1919
}

packages/config/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"jest-server.js"
1111
],
1212
"dependencies": {
13-
"eslint": "9.24.0",
14-
"eslint-config-next": "^15.3.0",
15-
"eslint-config-prettier": "^10.1.2",
16-
"next": "15.3.0",
17-
"react": "19.1.0",
18-
"react-dom": "19.1.0",
19-
"typescript": "^5.8.3"
13+
"eslint": "10.0.3",
14+
"eslint-config-next": "^16.1.6",
15+
"eslint-config-prettier": "^10.1.8",
16+
"next": "16.1.6",
17+
"react": "19.2.4",
18+
"react-dom": "19.2.4",
19+
"typescript": "^5.9.3"
2020
}
2121
}

0 commit comments

Comments
 (0)