-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 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
{
"name": "@dashlog/web-ui",
"version": "1.0.0",
"description": "Free and open source Dashboard / Statusboard to help maintainers and contributors",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node --env-file-if-exists=.env ./src/index.ts",
"lint": "eslint src public/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 <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashlog/web-ui/issues"
},
"homepage": "https://github.com/dashlog/web-ui#readme",
"dependencies": {
"@dashlog/core": "^2.2.0",
"@fastify/static": "9.0.0",
"ejs": "^3.1.10",
"fastify": "^5.3.3",
"jsonwebtoken": "^9.0.2",
"pino": "^10.1.0",
"pino-pretty": "^13.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@openally/config.eslint": "^2.1.0",
"@openally/config.typescript": "^1.0.3",
"@types/ejs": "^3.1.5",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^24.10.1",
"@types/ws": "^8.18.1",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22"
}
}