-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "bullmq-exporter",
"version": "1.0.0",
"description": "Service that can be used to monitor BullMQ by providing Prometheus metrics and a Bullmq dashboard secured behind a login wall.",
"main": "src/server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint . --ext ts",
"prettier": "prettier -w src/**/*.ts",
"build": "tsc",
"clean": "rm -rf node_modules dist",
"run": "node dist/server.js",
"dev": "ts-node src/server.ts",
"ts-node": "ts-node src/server.ts",
"nodemon": "nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bull-board/api": "^4.11.0",
"@bull-board/express": "^4.11.0",
"bullmq": "^3.6.2",
"connect-ensure-login": "^0.1.1",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-winston": "^4.2.0",
"ioredis": "^5.3.0",
"parse-duration": "^1.0.2",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"prom-client": "^14.1.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/connect-ensure-login": "^0.1.7",
"@types/ejs": "^3.1.1",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.5",
"@types/passport": "^1.0.11",
"@types/passport-local": "^1.0.35",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "npx ts-node src/server.ts"
}
}