forked from bee-queue/arena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.93 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
{
"name": "bull-arena",
"description": "An interactive UI dashboard for Bee Queue",
"main": "index.js",
"author": "Mixmax <hello@mixmax.com>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.0",
"express-handlebars": "^5.1.0",
"handlebars": "^4.7.7",
"lodash": "^4.17.15",
"moment": "^2.29.1",
"tablesort": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"bee-queue": "^1.2.3",
"bull": "^3.16.0",
"commitizen": "^4.2.5",
"conventional-changelog-conventionalcommits": "^4.3.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"semantic-release": "^17.4.2"
},
"scripts": {
"ci": "npm run lint && if [ -z \"$CI\" ]; then npm run ci:commitlint; fi",
"ci:commitlint": "commitlint --from \"origin/${GITHUB_BASE_REF:-master}\"",
"cm": "git cz",
"dry:run": "npm publish --dry-run",
"lint": "prettier -c .",
"lint:staged": "lint-staged",
"prepare": "husky install",
"pretty:quick": "pretty-quick --ignore-path ./.prettierignore --staged"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=7.6.0"
},
"files": [
"index.js",
"public",
"src"
],
"keywords": [
"bull-arena",
"bull",
"bee",
"bullmq"
],
"repository": "https://github.com/bee-queue/arena.git",
"version": "4.2.0"
}