-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
97 lines (97 loc) · 2.67 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
{
"name": "magic8bot",
"version": "0.0.0-dev",
"description": "Cryptocurrency trading bot",
"bugs": "https://github.com/magic8bot/magic8bot/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/magic8bot/magic8bot.git"
},
"main": "./magic8bot.js",
"bin": {
"magic8bot": "./magic8bot.sh"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"dist": "npm run build",
"rebuild": "npm run clean && npm run dist",
"start": "node ./magic8bot.js",
"start:dev": "cross-env NODE_ENV=development nodemon -w ./src -e ts ./magic8bot.js",
"lint": "tslint -p ./tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"test": "jest --detectOpenHandles --runInBand --forceExit",
"test:watch": "jest --detectOpenHandles --runInBand --forceExit --watch"
},
"dependencies": {
"@magic8bot/event-bus": "^1.1.2",
"@magic8bot/timebucket": "^1.1.0",
"body-parser": "^1.19.0",
"bottleneck": "^2.19.5",
"ccxt": "^1.38.34",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "7.0.2",
"deep-clone": "^3.0.3",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"module-alias": "^2.2.2",
"mongodb": "^3.6.3",
"semver": "^7.3.2",
"uuid": "^8.3.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0",
"ws": "^7.4.0",
"yargs": "^16.1.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.16.1",
"@types/jest": "^26.0.15",
"@types/mongodb": "^3.6.3",
"@types/mongodb-memory-server": "^2.3.0",
"@types/node": "^14.14.14",
"@types/semver": "^7.3.4",
"@types/serve-static": "^1.13.8",
"@types/ws": "^7.4.0",
"codecov": "^3.8.1",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"mongodb-memory-server": "^6.9.2",
"nodemon": "^2.0.6",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"resolutions": {
"@types/bson": "4.0.3"
},
"pre-commit": [
"lint"
],
"pre-push": [
"test"
],
"_moduleAliases": {
"@lib": "dist/lib/index.js",
"@core": "dist/core/index.js",
"@engine": "dist/engine/index.js",
"@exchange": "dist/exchange/index.js",
"@strategy": "dist/strategy/index.js",
"@store": "dist/store/index.js",
"@m8bTypes": "dist/types/index.js",
"@util": "dist/util/index.js"
}
}