-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.73 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "bull-board-dockerized",
"description": "This is a production-ready, heavily optimized, Docker image for bull-board. It allows you to monitor your bull queues without coding a web server just for that, just launch the Docker image!",
"version": "1.0.0",
"author": {
"name": "Albert Adler",
"url": "https://albertadler.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TheNaubit/bull-board-dockerized.git"
},
"keywords": [
"bull",
"bullmq",
"bullboard",
"bull-board",
"monitor",
"monitoring",
"redis",
"queue",
"dashboard",
"docker",
"dockerized",
"docker-image",
"docker-container",
"docker-compose"
],
"main": "src/index.ts",
"homepage": "https://github.com/TheNaubit/bull-board-dockerized",
"bugs": {
"url": "https://github.com/TheNaubit/bull-board-dockerized/issues"
},
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"build:prod": "rm -rf ./dist/* && bun build --sourcemap --target bun ./src/index.ts --outdir dist",
"compile:prod": "rm -rf ./dist/* && bun build --compile --sourcemap ./src/index.ts --outfile dist/bullboard",
"test": "bun test",
"docker:publish": "docker buildx build --tag nauverse/bull-board:latest --tag nauverse/bull-board:<my_new_version_code> --platform linux/arm64,linux/amd64 --builder container --no-cache --push .",
"commitlint": "commitlint --from origin/master",
"commit": "cz"
},
"dependencies": {
"@bogeychan/elysia-etag": "0.0.6",
"@bogeychan/elysia-logger": "0.0.22",
"@bull-board/api": "5.21.1",
"@elysiajs/static": "1.0.3",
"@nauverse/make-url": "1.10.13",
"bull": "4.15.1",
"bullmq": "5.10.3",
"ejs": "3.1.10",
"elysia": "1.0.26",
"elysia-basic-auth": "1.0.7",
"elysia-helmet": "2.0.0",
"elysia-http-error": "1.2.0",
"elysia-ip": "1.0.7",
"elysia-requestid": "1.0.9",
"ioredis": "5.4.1",
"ip-anonymize": "0.1.0",
"pino": "9.2.0",
"zod": "3.23.8",
"@types/bun": "1.1.6",
"@types/ejs": "3.1.5"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@commitlint/prompt": "19.3.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.1.1",
"@semantic-release/release-notes-generator": "14.0.1",
"commitizen": "4.3.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"husky": "9.1.1",
"semantic-release": "24.0.0"
},
"trustedDependencies": ["@biomejs/biome", "msgpackr-extract"],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}