-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·61 lines (61 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·61 lines (61 loc) · 1.98 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
59
60
61
{
"name": "nodejs-poolcontroller",
"version": "10.0.1",
"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": ">=10.0.0",
"node": ">=22.0.0"
},
"scripts": {
"prestart": "node -e \"const v=process.versions.node.split('.').map(Number);if(v[0]<22){console.error('\\x1b[31mError: Node.js >=22 required (found '+process.version+').\\x1b[0m');process.exit(1)}\"",
"start": "npm run build && node dist/app.js",
"start:cached": "node dist/app.js",
"build": "tsc",
"watch": "tsc -w",
"test:integration": "vitest run --config test/integration/vitest.config.ts",
"test:integration:watch": "vitest --config test/integration/vitest.config.ts"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"express": "^5.2.1",
"extend": "^3.0.2",
"jszip": "^3.9.1",
"mqtt": "^5.15.1",
"multer": "^2.0.2",
"multicast-dns": "^7.2.4",
"node-screenlogic": "^2.1.1",
"node-ssdp": "^4.0.1",
"serialport": "^13.0.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"source-map-support": "^0.5.21",
"winston": "^3.17.0",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/extend": "^3.0.4",
"@types/node": "^22.20.0",
"@types/ws": "^8.18.1",
"eslint": "^9.39.4",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.3.0",
"globals": "^16.5.0",
"grunt": "^1.5.3",
"grunt-banner": "^0.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.7"
}
}