-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "tick-stream-aggregator",
"version": "1.0.0",
"engines": {
"node": ">=18"
},
"description": "Streamlined real-time trade feed aggregator delivering time and sales data from leading exchanges such as Binance, Bybit, BitMEX, and others through a WebSocket API.",
"main": "dist/index.js",
"source": "src/index.js",
"scripts": {
"build": "rm -rf dist/ && tsc",
"test": "jest --forceExit --runInBand",
"lint": "lint-staged --config lint-staged.js",
"format": "prettier --write .",
"prettier": "prettier src -check",
"prepare": "husky install",
"start": "yarn build && node bin/tick-stream-aggregator.js",
"start:pm2": "yarn build && pm2 start bin/tick-stream-aggregator.js -i max",
"pm2": "pm2"
},
"bin": {
"tick-stream-aggregator": "./bin/tick-stream-aggregator.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/ws": "^8.5.10",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"pm2": "^5.3.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsc-files": "^1.1.4",
"typescript": "^5.3.3",
"ws": "^8.16.0"
},
"jest": {
"testEnvironment": "node",
"transform": {
"\\.(ts|tsx)?$": "ts-jest"
}
},
"dependencies": {
"find-my-way": "^8.0.0",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.38.0",
"yargs": "^17.7.2"
}
}