forked from bee-queue/docker-arena
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 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
{
"name": "docker-arena",
"version": "0.0.0",
"description": "The official docker application for bee-queue arena.",
"keywords": [
"arena",
"bee",
"bull",
"dashboard",
"docker",
"queue"
],
"license": "MIT",
"author": {
"name": "Vincent LE QUEC (Venatum)",
"url": "https://github.com/venatum"
},
"repository": {
"type": "git",
"url": "git+https://github.com/venatum/docker-arena.git"
},
"main": "index.js",
"scripts": {
"build": "docker build . -t docker-arena",
"start": "node index.js",
"start:dev": "nodemon --ignore 'public/vendor/*'",
"inspect": "nodemon --inspect --trace-warnings --ignore 'public/vendor/*'",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --check",
"format:fix": "oxfmt --write",
"fix": "npm run lint:fix && npm run format:fix"
},
"dependencies": {
"bee-queue": "^2.0.0",
"bull": "^4.16.5",
"bull-arena": "^4.9.2",
"bullmq": "^5.71.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"conventional-changelog-conventionalcommits": "^9.3.0",
"nodemon": "^3.1.14",
"oxfmt": "^0.44.0",
"oxlint": "^1.56.0",
"semantic-release": "^25.0.3"
}
}