forked from felixmosh/bull-board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.62 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
{
"name": "bull-board",
"description": "Bull queue UI for inspecting jobs",
"version": "1.0.0-alpha.8",
"keywords": [
"bull",
"redis",
"queue",
"monitoring"
],
"author": "Vitor Capretz <[email protected]>",
"contributors": [
"Erik Engervall <[email protected]>"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vcapretz/bull-board.git"
},
"bugs": {
"url": "https://github.com/vcapretz/bull-board/issues"
},
"files": [
"dist/**/*",
"static/**/*"
],
"scripts": {
"prepublishOnly": "yarn build",
"lint": "eslint \"./src/**/*.ts*\"",
"build": "yarn build:clean && yarn build:ui && yarn build:routes && cp ./src/ui/index.ejs dist/ui/index.ejs",
"build:ui": "NODE_ENV=production webpack",
"build:ui:watch": "webpack --watch",
"build:routes": "yarn tsc",
"build:clean": "rm -rf ./static ./dist",
"start:dev:docker": "docker-compose up -d",
"start:dev:server": "nodemon example.js",
"start:dev": "yarn start:dev:docker && yarn start:dev:server",
"test": "yarn ts-node src/dockest"
},
"dependencies": {
"@types/bull": "^3.12.1",
"@types/express": "^4.17.3",
"@types/react-dom": "^16.9.5",
"date-fns": "2.10.0",
"ejs": "3.0.1",
"express": "4.17.1",
"pretty-bytes": "5.3.0",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-highlight": "0.12.0",
"redis-info": "^3.0.7"
},
"devDependencies": {
"@types/jest": "^24.9.0",
"@types/node": "^13.1.8",
"@types/pretty-bytes": "^5.2.0",
"@types/react-highlight": "^0.12.2",
"@types/redis-info": "^3.0.0",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"@typescript-eslint/typescript-estree": "^2.17.0",
"babel-preset-react-app": "^7.0.2",
"bull": "^3.13.0",
"bullmq": "^1.8.2",
"css-loader": "^3.4.2",
"dockest": "2.0.0-beta.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"react-dev-utils": "^8.0.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-manifest-plugin": "^2.2.0"
}
}