forked from agenda/agendash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.52 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
{
"name": "agendash",
"version": "3.1.0",
"description": "A modern dashboard for Agenda.js with Pagination and Search capabilities",
"main": "app.js",
"bin": "bin/agendash-standalone.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "run-p lint ava",
"lint": "eslint ./",
"ava": "ava -v -c 1"
},
"keywords": [
"agenda",
"agendash",
"dashboard",
"job-queues"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agenda/agendash.git"
},
"bugs": {
"url": "https://github.com/agenda/agendash/issues"
},
"homepage": "https://github.com/agenda/agendash#readme",
"license": "MIT",
"files": [
"bin",
"lib",
"public",
"app.js",
"*.png",
"Dockerfile",
"entrypoint.sh"
],
"dependencies": {
"agenda": "^4.2.1",
"body-parser": "^1.15.0",
"commander": "^2.9.0",
"express": "^4.0.0",
"mongodb": "*",
"semver": "^7.3.4"
},
"devDependencies": {
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^6.0.5",
"ava": "3.15.0",
"eslint": "7.19.0",
"fastify": "^3.24.0",
"fastify-static": "^4.5.0",
"koa": "2.13.1",
"koa-bodyparser": "4.3.0",
"koa-router": "10.0.0",
"koa-static": "5.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"supertest": "^6.2.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2019
},
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended"
},
"eslintIgnore": [
"public"
]
}