-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "docker-stats-app",
"version": "1.0.0",
"description": "A tool for monitoring Docker container stats",
"main": "server/server.js",
"scripts": {
"start:backend": "node server/server.js",
"start:frontend": "cd client && npm run dev",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\""
},
"keywords": [
"docker",
"stats",
"observability",
"express"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.7",
"cors": "^2.8.5",
"css-loader": "^7.1.2",
"dockerode": "^4.0.3",
"express": "^4.21.2",
"react": "^18.3.1",
"react-bootstrap": "^2.10.8",
"react-bootstrap-icons": "^1.11.5",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.3.1",
"react-router-dom": "^7.1.3",
"socket.io": "^4.8.1",
"style-loader": "^4.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"concurrently": "^9.1.2",
"nodemon": "^2.0.22"
}
}