Skip to content

Commit d554d3e

Browse files
committed
chore: update dependencies (while keeping under Prisma 7)
The following are resolved by these upgrades: 64 vulnerabilities found Severity: 7 low | 31 moderate | 22 high | 4 critical
1 parent 4adf087 commit d554d3e

17 files changed

Lines changed: 1902 additions & 4065 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/dev/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: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,30 @@
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",
17+
"@prisma/client": ">=5 <7",
1718
"@prisma/extension-read-replicas": "^0.4.1",
18-
"axios": "^1.13.2",
19+
"axios": "^1.13.6",
1920
"db": "workspace:*",
20-
"lodash": "^4.17.21",
21-
"next": "15.3.0",
22-
"next-auth": "^4.24.11",
21+
"lodash": "^4.17.23",
22+
"next": "16.1.6",
23+
"next-auth": "^4.24.13",
2324
"next-auth-prisma-adapter": "workspace:*",
2425
"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"
26+
"react": "19.2.4",
27+
"react-admin": "^5.14.3",
28+
"react-dom": "19.2.4",
29+
"react-json-view-lite": "^2.5.0"
2930
},
3031
"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",
32+
"@types/lodash": "^4.17.24",
33+
"@types/node": "25.3.5",
34+
"@types/react": "19.2.14",
35+
"@types/react-dom": "19.2.3",
3536
"eslint-config-custom": "workspace:*",
36-
"typescript": "5.8.3"
37+
"typescript": "5.9.3"
3738
}
3839
}

apps/admin/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"moduleResolution": "node",
1717
"resolveJsonModule": true,
1818
"isolatedModules": true,
19-
"jsx": "preserve",
19+
"jsx": "react-jsx",
2020
"incremental": true,
2121
"plugins": [
2222
{
@@ -28,7 +28,8 @@
2828
"next-env.d.ts",
2929
"**/*.ts",
3030
"**/*.tsx",
31-
".next/types/**/*.ts"
31+
".next/types/**/*.ts",
32+
".next/dev/types/**/*.ts"
3233
],
3334
"exclude": [
3435
"node_modules"

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/dev/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.3.5",
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.14"
1717
},
18-
"packageManager": "pnpm@10.8.0"
18+
"packageManager": "pnpm@10.31.0"
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)