-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.06 KB
/
package.json
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
43
44
45
46
47
{
"name": "mqdockerup",
"version": "1.15.1",
"description": "A Node.js application that pushes information about running Docker containers to an MQTT server.",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "ts-node src/index.ts"
},
"author": "Michel Ferreira Ribeiro",
"license": "MIT",
"keywords": [
"docker",
"nodejs",
"mqtt",
"websockets",
"images",
"version",
"update"
],
"dependencies": {
"axios": "^1.7.9",
"dockerode": "^4.0.2",
"figlet": "^1.8.0",
"fs": "^0.0.1-security",
"lodash": "^4.17.21",
"mqtt": "^5.10.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"winston": "^3.17.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/dockerode": "^3.3.32",
"@types/figlet": "^1.7.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"install": "^0.13.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"npm": "^10.9.2",
"source-map-support": "^0.5.21",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}