forked from chrisleekr/binance-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.92 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "binance-trading-bot",
"version": "0.0.52",
"description": "Binance Auto Trading Bot",
"scripts": {
"start": "node dist/server.js",
"dev": "cross-env NODE_ENV=development nodemon app/server.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --progress --profile",
"lint": "eslint ./app --fix",
"test": "cross-env NODE_ENV=test jest --coverage --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisleekr/binance-traiding-bot.git"
},
"keywords": [
"Binance",
"Auto Trading Bot",
"Binance Trading Bot"
],
"author": "Chris Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisleekr/binance-traiding-bot/issues"
},
"homepage": "https://github.com/chrisleekr/binance-traiding-bot#readme",
"dependencies": {
"axios": "^0.21.1",
"binance-api-node": "^0.10.13",
"bunyan": "^1.8.14",
"clean-webpack-plugin": "^3.0.0",
"config": "^3.3.2",
"cron": "^1.8.2",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"ioredis": "^4.19.2",
"localtunnel": "^2.0.1",
"lodash": "^4.17.20",
"lodash-webpack-plugin": "^0.11.5",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"uuid": "^8.3.1",
"ws": "^7.4.2"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/preset-env": "^7.12.7",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.7.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"webpack": "^5.7.0",
"webpack-cli": "^4.2.0"
},
"jest": {
"testEnvironment": "node",
"resetMocks": true,
"globalSetup": "./jest.setup.js",
"collectCoverageFrom": [
"app/**/*.js",
"!**/node_modules/**",
"!**/__tests__/**",
"!**/coverage/**"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"npm run lint"
]
}
}