forked from bee-queue/docker-arena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"name": "docker-arena",
"main": "index.js",
"version": "0.0.0",
"description": "The official docker application for bee-queue arena.",
"license": "MIT",
"keywords": [
"arena",
"bee",
"bull",
"dashboard",
"docker",
"queue"
],
"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/*'",
"commitlint": "commitlint --from origin/master",
"commit": "cz"
},
"dependencies": {
"bee-queue": "^1.7.1",
"bull": "^4.16.5",
"bull-arena": "^4.4.2",
"bullmq": "^5.38.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/prompt": "^19.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"husky": "^9.1.7",
"nodemon": "^3.1.9",
"semantic-release": "^24.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/venatum/docker-arena.git"
},
"author": {
"name": "Vincent LE QUEC (Venatum)"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}