-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "docker-arena",
"private": true,
"main": "index.js",
"version": "0.0.0",
"description": "The official docker application for bee-queue arena.",
"scripts": {
"build": "docker build . -t docker-arena",
"ci": "npm run lint",
"ci:commitlint": "commitlint --from origin/default",
"inspect": "nodemon --inspect --trace-warnings --ignore 'public/vendor/*'",
"lint": "prettier -c .",
"start": "nodemon --ignore 'public/vendor/*'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"arena",
"bee",
"bull",
"dashboard",
"docker",
"queue"
],
"author": "Eli Skeggs <[email protected]> (https://mixmax.com)",
"license": "MIT",
"dependencies": {
"bee-queue": "^1.3.1",
"bull": "^3.20.0",
"bull-arena": "^3.6.1",
"bullmq": "^1.11.0",
"nodemon": "^2.0.6"
},
"repository": "https://github.com/bee-queue/docker-arena.git",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@mixmaxhq/prettier-config": "^1.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"conventional-changelog-conventionalcommits": "^4.5.0",
"prettier": "^2.2.0",
"semantic-release": "^17.3.0"
}
}