forked from modbus2mqtt/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@modbus2mqtt/server",
"version": "0.16.11",
"sshserver": "[email protected]",
"homepage": "https://github.com/modbus2mqtt/server/README.md",
"description": "server for modbus2mqtt for REST API of configuration and publishing modbus values to mqtt",
"keywords": [
"modbus2mqtt",
"specification",
"validation"
],
"bugs": "https://github.com/modbus2mqtt/server/issues",
"type": "commonjs",
"bin": {
"modbus2mqtt": "bin/modbus2mqtt.js"
},
"author": "Volkmar Nissen <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/modbus2mqtt/server"
},
"credits": "multiple choice by Studio 365 from <a href='https://thenounproject.com/browse/icons/term/multiple-choice/' target='_blank' title='multiple choice Icons'>Noun Project</a> (CC BY 3.0)",
"scripts": {
"test": "jest",
"build.dev": "cd ../specification.shared && npm run build && cd ../specification && tsc && cd ../server.shared && npm run build && cd ../angular && npm run build.dev && cd ../server && tsc ",
"build.all": "cd ../specification.shared && tsc --build tsconfig.cjs.json && cd ../specification && tsc && cd ../server.shared && tsc --build tsconfig.cjs.json && cd ../angular && npm run build && cd ../server && tsc ",
"server": "npm run build.dev && node dist/modbus2mqtt.js -s ../ssl -y ../yaml-dir",
"serverTCP": "npm run build.dev && node dist/modbus2mqtt.js -s ../ssl -y ../yaml-dir --busid 0",
"build": "tsc && npx @opengovsg/credits-generator",
"build.docker": "docker buildx build --load --tag modbus2mqtt/server docker",
"ng serve": "cd ../angular && ng serve --open",
"prettier": "prettier --write '**/*.{ts,js,css,html,tsx}'"
},
"dependencies": {
"@google-cloud/translate": "^8.3.0",
"@modbus2mqtt/angular": "^0.12.7",
"@modbus2mqtt/server.shared": "^0.13.6",
"@modbus2mqtt/specification": "^0.15.18",
"@modbus2mqtt/specification.shared": "^0.10.5",
"@octokit/rest": "^20.1.1",
"adm-zip": "^0.5.16",
"assert": "^2.1.0",
"async-mutex": "^0.5.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.3",
"commander": "^12.1.0",
"cors": "^2.8.5",
"debug": "^4.3.6",
"express": "^5.0.1",
"express-fileupload": "^1.5.1",
"http-server": "^14.1.1",
"ignore-walk": "^7.0.0",
"jest-cli": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"latest": "^0.2.0",
"modbus-serial": "^8.0.17",
"mqtt": "^5.9.1",
"multer": "^1.4.5-lts.1",
"node-html-parser": "^6.1.13",
"npmlog": "^7.0.1",
"package-lock.json": "^1.0.0",
"rxjs": "^7.8.1",
"serialport": "^12.0.0",
"serve-static": "^1.15.0",
"ts-node": "^10.9.2",
"url-parse": "^1.5.10",
"yaml": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@jest/types": "^29.6.3",
"@opengovsg/credits-generator": "^1.0.7",
"@popperjs/core": "^2.11.8",
"@types/adm-zip": "^0.5.5",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/body-parser": "^1.19.5",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node": "^22.5.5",
"@types/node-fetch": "^2.6.11",
"@types/npmlog": "^7.0.0",
"@types/supertest": "^6.0.2",
"@types/url-parse": "^1.4.11",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"tsx": "^4.16.5",
"typescript": "^5.5.4",
"typescript-map": "^0.1.0"
}
}