forked from felixmosh/bull-board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "bull-board",
"description": "Bull queue UI for inspecting jobs",
"keywords": [
"bull",
"redis",
"queue"
],
"main": "index.js",
"private": false,
"version": "0.2.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vcapretz/bull-board.git"
},
"bugs": {
"url": "https://github.com/vcapretz/bull-board/issues"
},
"scripts": {
"prepublishOnly": "rm -rf ./build && yarn build",
"test": "node ./dockest.js",
"build": "NODE_ENV=production webpack",
"build:watch": "NODE_ENV=production webpack --watch",
"start": "node example.js",
"start:dev": "concurrently \"yarn build:watch\" \"yarn start\"",
"start:example": "yarn build && yarn start"
},
"dependencies": {
"body-parser": "^1.17.2",
"bull": "3.6.0",
"date-fns": "^2.0.1",
"ejs": "^2.6.1",
"express": "^4.15.2",
"express-async-router": "^0.1.15",
"pretty-bytes": "^5.1.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-highlight": "^0.12.0"
},
"devDependencies": {
"babel-preset-react-app": "^7.0.2",
"concurrently": "^4.1.2",
"css-loader": "^2.1.1",
"dockest": "^1.0.3",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react-dev-utils": "^8.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-manifest-plugin": "^2.0.4"
}
}