-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "vantage-node",
"version": "2.0.11",
"description": "Get telnet data of vantage pro 2 via telnet",
"main": "./dist/index.js",
"scripts": {
"start": "node ./dist/index.js",
"dev": "ts-node-dev --respawn --no-deps --rs --cls ./src/index.ts",
"test": "nyc mocha -r ts-node/register test/*.ts",
"build": "tsc",
"eslint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "https://github.com/Trickfilm400/vantage-node"
},
"keywords": [
"telnet",
"socket.io",
"vantage-pro",
"typescript"
],
"author": "Trickfilm400",
"license": "ISC",
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"convict": "^6.2.4",
"mqtt": "^5.10.1",
"mysql": "^2.18.1",
"prom-client": "^15.1.3",
"socket.io": "^4.8.1",
"telnet-client": "^2.2.1",
"winston": "^3.16.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/convict": "^6.1.6",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.9",
"@types/mysql": "^2.15.26",
"@types/node": "^20.17.6",
"@types/ws": "^8.5.13",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}