Skip to content

Commit 984b569

Browse files
authored
Merge pull request #42 from oxdev03/change-chore-update-deps
chore: update npm packages
2 parents 5faa546 + ef1d1e7 commit 984b569

File tree

8 files changed

+535
-599
lines changed

8 files changed

+535
-599
lines changed

apps/backend/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@
3434
"bytes-iec": "^3.1.1",
3535
"dotenv": "^16.4.5",
3636
"pm2": "^5.4.2",
37-
"systeminformation": "^5.22.11"
37+
"systeminformation": "^5.23.5"
3838
},
3939
"devDependencies": {
4040
"@pm2.web/eslint-config": "*",
4141
"@pm2.web/typescript-config": "*",
4242
"@types/bcrypt": "^5.0.2",
43-
"eslint": "^8.57.0",
44-
"typescript": "^5.5.4"
43+
"eslint": "^8.57.1",
44+
"typescript": "^5.6.2"
4545
}
4646
}

apps/backend/utils/serverInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default async function getServerInfo(): Promise<IServerInfo> {
1212
cpu: (await si.currentLoad())?.currentLoad ?? 0,
1313
memory: mem?.used ?? 0,
1414
memoryMax: mem?.total ?? 0,
15-
uptime: (await si.time())?.uptime * 1000 ?? 0,
15+
uptime: ((await si.time())?.uptime || 0) * 1000,
1616
},
1717
heartbeatAt: Date.now(),
1818
};

apps/dashboard/package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -29,28 +29,28 @@
2929
"format:check": "prettier --check ."
3030
},
3131
"dependencies": {
32-
"@mantine/charts": "^7.11.2",
33-
"@mantine/code-highlight": "^7.11.2",
34-
"@mantine/core": "^7.11.2",
35-
"@mantine/form": "^7.11.2",
36-
"@mantine/hooks": "^7.11.2",
37-
"@mantine/notifications": "^7.11.2",
32+
"@mantine/charts": "^7.13.0",
33+
"@mantine/code-highlight": "^7.13.0",
34+
"@mantine/core": "^7.13.0",
35+
"@mantine/form": "^7.13.0",
36+
"@mantine/hooks": "^7.13.0",
37+
"@mantine/notifications": "^7.13.0",
3838
"@pm2.web/mongoose-models": "*",
3939
"@pm2.web/typings": "*",
40-
"@tabler/icons-react": "^3.11.0",
41-
"@tanstack/react-query": "^5.51.11",
42-
"@trpc/client": "^11.0.0-rc.466",
43-
"@trpc/next": "^11.0.0-rc.466",
44-
"@trpc/react-query": "^11.0.0-rc.461",
45-
"@trpc/server": "^11.0.0-rc.466",
40+
"@tabler/icons-react": "^3.19.0",
41+
"@tanstack/react-query": "^5.56.2",
42+
"@trpc/client": "^11.0.0-rc.552",
43+
"@trpc/next": "^11.0.0-rc.552",
44+
"@trpc/react-query": "^11.0.0-rc.552",
45+
"@trpc/server": "^11.0.0-rc.552",
4646
"bcrypt": "^5.1.1",
4747
"cookies-next": "^4.2.1",
4848
"dotenv": "^16.4.5",
4949
"dotenv-cli": "^7.4.2",
5050
"lodash": "^4.17.21",
51-
"mongodb-memory-server": "^10.0.0",
52-
"next": "^14.2.5",
53-
"next-auth": "^4.24.7",
51+
"mongodb-memory-server": "^10.0.1",
52+
"next": "^14.2.13",
53+
"next-auth": "^4.24.8",
5454
"react": "^18.3.1",
5555
"react-dom": "^18.3.1",
5656
"recharts": "^2.12.7",
@@ -59,22 +59,22 @@
5959
},
6060
"devDependencies": {
6161
"@types/bcrypt": "^5.0.2",
62-
"@types/lodash": "^4.17.7",
62+
"@types/lodash": "^4.17.9",
6363
"@types/ms": "^0.7.34",
64-
"@types/node": "20.14.13",
65-
"@types/react": "^18.3.3",
64+
"@types/node": "20.16.10",
65+
"@types/react": "^18.3.10",
6666
"@types/react-dom": "^18.3.0",
67-
"cypress": "^13.13.1",
68-
"eslint": "^8.57.0",
69-
"eslint-config-next": "^14.2.5",
67+
"cypress": "^13.15.0",
68+
"eslint": "^8.57.1",
69+
"eslint-config-next": "^14.2.13",
7070
"eslint-config-prettier": "^9.1.0",
71-
"eslint-plugin-import": "^2.29.1",
71+
"eslint-plugin-import": "^2.30.0",
7272
"eslint-plugin-simple-import-sort": "^12.1.1",
7373
"eslint-plugin-unicorn": "^55.0.0",
74-
"postcss": "^8.4.40",
74+
"postcss": "^8.4.47",
7575
"postcss-preset-mantine": "^1.17.0",
7676
"postcss-simple-vars": "^7.0.1",
77-
"start-server-and-test": "^2.0.5",
78-
"typescript": "5.5.4"
77+
"start-server-and-test": "^2.0.8",
78+
"typescript": "5.6.2"
7979
}
8080
}

0 commit comments

Comments
 (0)