-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 3.87 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
{
"name": "orderflow",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"build:binance": "nest build binance --webpack",
"build:bitget": "nest build bitget --webpack",
"build:bybit": "nest build bybit --webpack",
"build:gateio": "nest build gateio --webpack",
"build:okx": "nest build okx --webpack",
"build:binance-backfill": "nest build binance-backfill --webpack",
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:binance": "nest start binance --watch",
"start:bitget": "nest start bitget --watch",
"start:bybit": "nest start bybit --watch",
"start:gateio": "nest start gateio --watch",
"start:okx": "nest start okx --watch",
"start:binance-backfill": "nest start binance-backfill --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/apps/orderflow/main",
"docker:binance": "docker-compose build --no-cache binance && docker-compose up -d binance",
"docker:bitget": "docker-compose build --no-cache bitget && docker-compose up -d bitget",
"docker:bybit": "docker-compose build --no-cache bybit && docker-compose up -d bybit",
"docker:gateio": "docker-compose build --no-cache gateio && docker-compose up -d gateio",
"docker:okx": "docker-compose build --no-cache okx && docker-compose up -d okx",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"dependencies": {
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.4.12",
"@nestjs/platform-express": "^10.4.12",
"@nestjs/schedule": "^4.1.1",
"@nestjs/typeorm": "^10.0.0",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.4",
"binance": "^2.13.18",
"bitget-api": "^2.0.13",
"bybit-api": "^3.10.27",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"csv-parse": "^5.5.5",
"gateio-api": "^1.1.1",
"jszip": "^3.10.1",
"okx-api": "^1.4.12",
"pg": "^8.11.2",
"rabbitmq-client": "^5.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"typeorm": "^0.3.17",
"uuid": "^10.0.0"
},
"devDependencies": {
"@nestjs/cli": "^10.4.8",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/amqplib": "^0.10.5",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>/libs/",
"<rootDir>/apps/"
],
"moduleNameMapper": {
"^@database/database(|/.*)$": "<rootDir>/libs/database/src/$1",
"^@orderflow/orderflow(|/.*)$": "<rootDir>/libs/orderflow/src/$1",
"^@shared(|/.*)$": "<rootDir>/libs/shared/src/$1",
"^@rabbitmq(|/.*)$": "<rootDir>/libs/rabbitmq/src/$1"
}
}
}