-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "dasdashboard",
"version": "0.4.0",
"description": "Local dashboard with focus on easy editing.",
"license": "MIT",
"author": "Uwe Koch",
"engines": {
"node": ">=12.20.0"
},
"main": "index.js",
"bin": {
"dasdashboard": "./index.js"
},
"repository": "github:seldomU/dasdashboard",
"homepage": "https://github.com/seldomU/dasdashboard",
"scripts": {
"opendash": "node index.js --open",
"compile_bootstrap": "npx sass --no-source-map --style compressed clientSrc/bootstrap5.2.1/bootstrap_custom.scss client/vendor/bootstrap_compiled.css",
"testserver": "node index.js --content cypress/testboard --port 3338",
"cypress": "npx cypress open"
},
"dependencies": {
"commander": "^9.4.1",
"execa": "^6.1.0",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"fs-extra": "^10.1.0",
"open": "^8.4.0",
"ps-tree": "^1.2.0",
"winston": "^3.11.0"
},
"devDependencies": {
"cypress": "^10.11.0",
"sass": "^1.55.0"
},
"keywords": [
"dashboard",
"control panel",
"local",
"tool",
"gui",
"devops",
"javascript"
]
}