-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.47 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
{
"name": "hopbot",
"version": "1.0.0",
"description": "A trading bot",
"bugs": "https://github.com/fodisi/hopBot/issues",
"main": "src/hopbot.js",
"bin": {
"hopbot": "./hopbot.sh"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/hopbot.js",
"start:dev": "npx babel-node ./src/hopbot.js",
"build": "babel src --out-dir dist",
"serve": "node dist/hopbot.js"
},
"keywords": [
"bot",
"crypto",
"cryptocurrency",
"tradingbot",
"trading",
"hopbot"
],
"author": "github.com/fodisi",
"license": "",
"dependencies": {
"gdax": "^0.8.0",
"npm": "^6.8.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,md,scss,css,yaml,yml}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=10.0.0"
}
}