forked from agenda/agendash-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
{
"name": "agendash2",
"version": "0.8.1",
"description": "A modern dashboard for Agenda.js with Pagination and Search capabilities",
"main": "app.js",
"bin": "bin/agendash-standalone.js",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags",
"lint": "eslint --fix '**/*.js'",
"test": "run-p lint ava",
"ava": "ava -v -c 1"
},
"keywords": [
"agenda",
"agendash",
"dashboard",
"job-queues"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Software-On-The-Road/agendash-v2.git"
},
"bugs": {
"url": "https://github.com/Software-On-The-Road/agendash-v2/issues"
},
"homepage": "https://github.com/Software-On-The-Road/agendash-v2#readme",
"license": "MIT",
"dependencies": {
"mongodb": "^3.6.2",
"@hapi/hapi": "^20.0.1",
"@hapi/inert": "^6.0.3",
"@hokify/agenda": "^4.0.20",
"async": "^3.2.0",
"body-parser": "^1.19.0",
"commander": "^6.1.0",
"express": "^4.17.1",
"semver": "^7.3.2"
},
"devDependencies": {
"@hokify/eslint-config": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"ava": "^3.13.0",
"eslint": "^7.11.0",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-unicorn": "^22.0.0",
"nodemon": "^2.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"supertest": "^5.0.0",
"typescript": "^4.0.3",
"webpack": "^5.1.1"
}
}