-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.98 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
{
"name": "bull-admin-panel",
"version": "1.1.0",
"description": "An admin panel of Bull based on WebSocket.",
"main": "index.js",
"scripts": {
"start": "BULL_ADMIN_PANEL_DEBUG=true concurrently --kill-others \"nodemon example/server.js --watch example --watch lib\" \"webpack-dev-server\"",
"build": "rm -rf lib/frontend/dist && NODE_ENV=production webpack",
"ncu": "npm-check-updates",
"eslint": "eslint ./ --ignore-path .gitignore --ignore-pattern 'lib/frontend/dist/'",
"changelog": "node_modules/conventional-changelog-cli/cli.js -n node_modules/@kelp404/changelog.config",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "jest --config __tests__/backend/jest.config.js",
"test:frontend": "jest --config __tests__/frontend/jest.config.js"
},
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kelp404/bull-admin-panel.git"
},
"keywords": [
"bull",
"queue",
"job-queue"
],
"author": "Kelp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kelp404/bull-admin-panel/issues"
},
"homepage": "https://github.com/kelp404/bull-admin-panel#readme",
"dependencies": {
"bull": "4.8.5",
"express": "4.18.1",
"fastest-validator": "1.12.0",
"handlebars": "4.7.7",
"path-to-regexp": "6.2.0",
"query-string": "7.1.1",
"ws": "8.5.0"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/eslint-parser": "7.18.9",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-runtime": "7.18.10",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.18.10",
"@babel/preset-react": "7.18.6",
"@fortawesome/fontawesome-free": "6.1.0",
"@kelp404/changelog.config": "0.1.0",
"@kelp404/react-infinite-scroller": "1.2.5",
"babel-loader": "8.2.5",
"bootstrap": "4.5.3",
"capybara-router": "2.8.0",
"classnames": "2.3.1",
"compression-webpack-plugin": "10.0.0",
"concurrently": "7.1.0",
"config": "3.3.7",
"conventional-changelog-cli": "2.2.2",
"css-loader": "6.7.1",
"dayjs": "1.11.0",
"eslint": "8.22.0",
"eslint-config-xo": "0.40.0",
"eslint-config-xo-react": "0.27.0",
"eslint-config-xo-space": "0.32.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"file-loader": "6.2.0",
"history": "5.3.0",
"jest": "27.5.1",
"jest-environment-jsdom": "27.5.1",
"jest-environment-node": "27.5.1",
"jquery": "3.6.0",
"mini-css-extract-plugin": "2.6.1",
"nodemon": "2.0.19",
"npm-check-updates": "16.0.5",
"nprogress": "0.2.0",
"pubsub-js": "1.9.4",
"react": "16.13.1",
"react-bootstrap": "1.3.0",
"react-dom": "16.13.1",
"react-flip-move": "3.0.4",
"react-test-renderer": "16.13.1",
"redis": "4.0.6",
"sass": "1.57.0",
"sass-loader": "13.0.2",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.10.0"
}
}