forked from chrisleekr/binance-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.62 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
111
112
113
114
115
116
{
"name": "binance-trading-bot",
"version": "0.0.71",
"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",
"docker:build": "docker build . --build-arg PACKAGE_VERSION=$(node -p \"require('./package.json').version\") --build-arg GIT_HASH=$(git rev-parse --short HEAD) --build-arg NODE_ENV=production --target production-stage -t chrisleekr/binance-trading-bot:latest",
"docker:build:dev": "docker build . --build-arg PACKAGE_VERSION=$(node -p \"require('./package.json').version\") --build-arg GIT_HASH=$(git rev-parse --short HEAD) --build-arg NODE_ENV=development --target dev-stage -t chrisleekr/binance-trading-bot:latest",
"docker:build:win": "powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./scripts/docker-build.ps1"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisleekr/binance-traiding-bot.git"
},
"keywords": [
"Binance",
"Auto Trading Bot",
"Binance Trading Bot"
],
"author": "Chris Lee <git@chrislee.kr>",
"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.47",
"bunyan": "^1.8.15",
"clean-webpack-plugin": "^3.0.0",
"config": "^3.3.6",
"cron": "^1.8.2",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"ioredis": "^4.27.4",
"localtunnel": "^2.0.1",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.6",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mongodb": "3.6.9",
"pubsub-js": "^1.9.3",
"redlock": "^4.2.0",
"uuid": "^8.3.2",
"ws": "^7.4.6"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-env": "^1.7.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"jest": {
"testEnvironment": "node",
"resetMocks": false,
"globalSetup": "./jest.setup.js",
"collectCoverageFrom": [
"app/**/*.js",
"!**/node_modules/**",
"!**/__tests__/**",
"!**/coverage/**"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"npm run lint"
]
}
}