-
-
Notifications
You must be signed in to change notification settings - Fork 363
/
package.json
90 lines (90 loc) · 2.38 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
{
"name": "@bull-board/root",
"version": "6.3.3",
"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",
"Dennis Snijder <[email protected]>"
],
"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 --stream --scope @bull-board/ui dev",
"start:dev:server": "ts-node-dev --rs example.ts",
"start:dev": "concurrently --names \"UI,API\" -c \"bgBlue.bold,bgMagenta.bold\" \"yarn start:dev:ui\" \"yarn start:dev:server\"",
"test": "lerna run test",
"clean": "lerna run clean",
"release": "release-it --only-version"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"auto-changelog": "^2.4.0",
"concurrently": "^7.4.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-react": "^7.31.8",
"jest": "^29.6.1",
"lerna": "^4.0.0",
"prettier": "^2.8.8",
"release-it": "^15.11.0",
"release-it-yarn-workspaces": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.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
},
"resolutions": {
"@types/react": "17.0.63",
"@types/react-dom": "17.0.20"
},
"dependencies": {}
}