forked from felixmosh/bull-board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.74 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
95
96
97
98
99
100
{
"name": "@bull-board/root",
"version": "3.6.0",
"private": true,
"description": "Bull queue UI for inspecting jobs",
"keywords": [
"bull",
"bullmq",
"redis",
"queue",
"monitoring",
"dashboard"
],
"bugs": {
"url": "https://github.com/felixmosh/bull-board/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixmosh/bull-board.git"
},
"license": "MIT",
"author": "felixmosh",
"contributors": [
"Erik Engervall <[email protected]>",
"felixmosh"
],
"workspaces": [
"packages/*"
],
"scripts": {
"prepublishOnly": "yarn build",
"lint": "eslint \"./packages/**/*.ts*\"",
"build": "lerna run build",
"start:dev:docker": "docker-compose up -d",
"start:dev:ui": "lerna run --scope @bull-board/ui start",
"start:dev:server": "ts-node-dev --rs example.ts",
"start:dev": "concurrently \"yarn start:dev:ui\" \"yarn start:dev:server\"",
"test": "lerna run test",
"clean": "lerna run clean",
"release": "release-it --only-version"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.14.0",
"@types/bull": "^3.15.1",
"@types/ioredis": "^4.26.4",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.2",
"@types/redis-info": "^3.0.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"auto-changelog": "^2.3.0",
"babel-loader": "^8.2.2",
"bull": "^3.22.6",
"bullmq": "^1.28.0",
"concurrently": "^6.2.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-react": "^7.21.5",
"jest": "^27.0.1",
"lerna": "^4.0.0",
"prettier": "^2.3.0",
"release-it": "^14.7.0",
"release-it-yarn-workspaces": "^2.0.1",
"supertest": "^6.0.1",
"ts-jest": "^27.0.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
},
"release-it": {
"plugins": {
"release-it-yarn-workspaces": true
},
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"before:init": [
"yarn lint",
"yarn test"
],
"after:bump": [
"npx auto-changelog -p",
"yarn build"
]
},
"github": {
"release": true
},
"npm": false
}
}