-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.69 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "nodejs-poolcontroller",
"version": "8.4.0",
"description": "nodejs-poolController",
"main": "app.js",
"author": {
"name": "Russell Goldin",
"name2": "Robert Strouse"
},
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/tagyoureit/nodejs-poolController.git"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=20.0.0"
},
"scripts": {
"start": "npm run build && node dist/app.js",
"start:cached": "node dist/app.js",
"build": "tsc",
"watch": "tsc -w"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"eslint-config-promise": "^2.0.2",
"express": "^4.21.2",
"extend": "^3.0.2",
"jszip": "^3.9.1",
"mqtt": "^4.3.8",
"multer": "^2.0.2",
"multicast-dns": "^7.2.4",
"node-screenlogic": "^2.1.1",
"node-ssdp": "^4.0.1",
"serialport": "^11.0.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"source-map-support": "^0.5.21",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/express": "^4.17.23",
"@types/extend": "^3.0.4",
"@types/node": "^20.19.17",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"grunt": "^1.5.3",
"grunt-banner": "^0.6.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}