-
-
Notifications
You must be signed in to change notification settings - Fork 482
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.67 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.67 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@bull-board/root",
"version": "8.1.2",
"private": true,
"description": "Bull queue UI for inspecting jobs",
"keywords": [
"bull",
"bullmq",
"dashboard",
"monitoring",
"queue",
"redis"
],
"bugs": {
"url": "https://github.com/felixmosh/bull-board/issues"
},
"license": "MIT",
"author": "felixmosh",
"contributors": [
"Erik Engervall <erik.engervall@gmail.com>",
"felixmosh",
"Dennis Snijder <dennis@snijder.io>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/felixmosh/bull-board.git"
},
"workspaces": [
"packages/*",
"website",
"website/demo"
],
"scripts": {
"build": "yarn workspaces foreach -A -t --exclude '@bull-board/website' --exclude '@bull-board/demo' run build",
"clean": "yarn workspaces foreach -A --exclude '@bull-board/website' --exclude '@bull-board/demo' run clean",
"dev": "concurrently --names \"UI,API\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn dev:ui\" \"yarn dev:server\"",
"dev:docker": "docker compose -f docker-compose.redis.yml up -d",
"dev:server": "ts-node-dev --rs example.ts",
"dev:ui": "yarn workspace @bull-board/ui run dev",
"lint": "oxlint './packages/**/*.{ts,tsx}' . --fix",
"lint:check": "oxlint './packages/**/*.{ts,tsx}' .",
"format": "oxfmt './packages/**/*.{ts,tsx}' './examples/**/*.{ts,tsx}'",
"format:check": "oxfmt './packages/**/*.{ts,tsx}' './examples/**/*.{ts,tsx}' --check",
"prepublishOnly": "yarn build",
"release": "release-it",
"test": "yarn workspaces foreach -A --exclude '@bull-board/website' --exclude '@bull-board/demo' --exclude '@bull-board/bun' --exclude '@bull-board/ui' run test"
},
"devDependencies": {
"@release-it-plugins/workspaces": "^6.0.0",
"@types/node": "^22.20.0",
"auto-changelog": "^2.6.0",
"concurrently": "^10.0.3",
"oxfmt": "^0.57.0",
"oxlint": "^1.73.0",
"release-it": "^19.2.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
},
"resolutions": {
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3"
},
"auto-changelog": {
"ignoreCommitPattern": "^release: |^chore: release|^Release \\d",
"replaceText": {
"(^chore:\\s*)": "",
"(^chore\\([^)]*\\):\\s*)": "",
"(^chore\\(deps-dev\\):\\s*)": "",
"(^chore\\(deps\\):\\s*)": "",
"(^docs:\\s*)": "",
"(^docs\\([^)]*\\):\\s*)": "",
"(^feat:\\s*)": "",
"(^feat\\([^)]*\\):\\s*)": "",
"(^fix:\\s*)": "",
"(^fix\\([^)]*\\):\\s*)": "",
"(^perf:\\s*)": "",
"(^perf\\([^)]*\\):\\s*)": "",
"(^refactor:\\s*)": "",
"(^refactor\\([^)]*\\):\\s*)": "",
"(^style:\\s*)": "",
"(^style\\([^)]*\\):\\s*)": "",
"(^test:\\s*)": "",
"(^test\\([^)]*\\):\\s*)": ""
}
},
"packageManager": "yarn@4.17.0",
"release-it": {
"plugins": {
"@release-it-plugins/workspaces": {
"skipChecks": true,
"publish": false
}
},
"npm": false,
"git": {
"commit": true,
"commitMessage": "release: v${version}",
"tag": true,
"tagName": "v${version}",
"tagAnnotation": "v${version}",
"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",
"yarn lint",
"yarn format"
],
"after:bump": [
"yarn",
"yarn build",
"yarn test",
"npx auto-changelog -p --template .auto-changelog.template.hbs --handlebars-setup .auto-changelog-helpers.js"
]
},
"github": {
"release": false
}
}
}