-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "@dashlog/web-ui",
"version": "1.0.0",
"description": "Free and open source Dashboard / Statusboard to help maintainers and contributors",
"type": "module",
"export": "./index.js",
"scripts": {
"start": "node -r dotenv/config index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashlog/web-ui.git"
},
"keywords": [
"dashboard",
"statusboard",
"opensource"
],
"files": [
"src",
"index.js",
"public"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashlog/web-ui/issues"
},
"homepage": "https://github.com/dashlog/web-ui#readme",
"dependencies": {
"@dashlog/core": "^2.1.0",
"@polka/send": "^0.4.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"jsonwebtoken": "^9.0.2",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"polka": "^0.5.2",
"sirv": "^3.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@nodesecure/eslint-config": "^2.0.0-beta.0",
"@types/node": "^22.0.0",
"eslint": "^9.8.0"
},
"engines": {
"node": ">=20"
}
}