-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "nodejs-poolcontroller-dashpanel",
"version": "10.0.0",
"description": "Dashboard Panel",
"main": "dist/app.js",
"author": {
"name": "Robert Strouse"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rstrouse/nodejs-poolController-dashPanel.git"
},
"scripts": {
"start": "npm run build && node dist/app.js",
"start:cached": "node dist/app.js",
"build": "tsc",
"watch": "tsc -w",
"dev:qa": "npm run qa:smoke",
"dev:qa:cached": "npm run qa:smoke:cached",
"qa:smoke": "npm run build && node scripts/tests/devQaSmokeWorkflow.js",
"qa:smoke:cached": "node scripts/tests/devQaSmokeWorkflow.js"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.3.0",
"express": "^5.2.1",
"extend": "^3.0.2",
"jquery": "^4.0.0",
"jquery-ui": "^1.14.1",
"multer": "^2.2.0",
"node-ssdp": "^4.0.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/extend": "^3.0.4",
"@types/node": "^22.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=20.0.0"
}
}