-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
{
"name": "scheduler",
"version": "1.0.0",
"description": "Register scheduled container based tasks in Redis queues",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"./**/*.js\"",
"fix": "eslint --fix \"./**/*.js\""
},
"keywords": [
"docker",
"container",
"scheduled",
"task"
],
"author": "Tianxiao Ma",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.js": [
"eslint --fix",
"git add"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"devDependencies": {
"eslint": "^6.2.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"prettier": "^1.18.2"
},
"dependencies": {
"bull": "^3.10.0",
"dockerode": "^2.5.8",
"graphite": "^0.1.4",
"winston": "^3.2.1"
}
}