-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
101 lines (101 loc) · 2.8 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
101
{
"name": "bull-master",
"description": "Bull queue UI for inspecting and manipulating jobs",
"version": "1.0.5",
"keywords": [
"bull",
"redis",
"queue",
"monitoring"
],
"author": "Hans Li <[email protected]>",
"contributors": [],
"main": "server/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hans-lizihan/bull-master.git"
},
"bugs": {
"url": "https://github.com/hans-lizihan/bull-master/issues"
},
"files": [
"server/**/*",
"dist/**/*"
],
"scripts": {
"prepublishOnly": "yarn build",
"lint": "NODE_ENV=development eslint client/**/*.{js,jsx} server/**/*.js",
"build": "yarn build:clean && yarn build:ui",
"build:publish": "yarn build",
"build:ui": "NODE_ENV=production webpack",
"build:clean": "rm -rf ./static ./dist",
"dev:server": "nodemon example.js",
"dev:client": "NODE_ENV=development webpack serve --port 4888",
"test": "NODE_ENV=test jest --coverage --collectCoverageFrom=**/*.{js,jsx}",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"body-parser": "^1.19.1",
"express": "4.20.0",
"redis-info": "^3.1.0"
},
"optionalDependencies": {
"bull": "^4.2.0",
"bullmq": "^1.64.0"
},
"devDependencies": {
"@babel/core": "7.24.3",
"@babel/eslint-parser": "7.24.1",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@commitlint/cli": "16.3.0",
"@commitlint/core": "16.3.0",
"@hot-loader/react-dom": "17.0.2",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"axios": "0.28.1",
"babel-loader": "8.3.0",
"babel-preset-react-app": "10.0.1",
"clsx": "1.2.1",
"commitlint-config-gitmoji": "2.2.6",
"css-loader": "6.10.0",
"date-fns": "2.30.0",
"enzyme": "3.11.0",
"enzyme-to-json": "3.6.2",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "7.0.4",
"jest": "28.1.3",
"lint-staged": "12.5.0",
"nodemon": "2.0.22",
"prettier": "2.8.8",
"prettier-eslint": "13.0.0",
"pretty-bytes": "5.6.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-loader": "4.13.1",
"react-request-hook": "2.1.1",
"react-router": "6.3.0",
"react-router-dom": "6.3.0",
"recharts": "2.1.15",
"style-loader": "3.3.4",
"supertest": "6.3.4",
"webpack": "5.94.0",
"webpack-bundle-analyzer": "4.10.1",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.2"
}
}