-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.04 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.04 KB
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
{
"name": "waspbot-ts",
"version": "0.1.0",
"description": "High-performance algorithmic trading bot framework in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/**/*.ts --fix",
"lint:check": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"clean": "rimraf dist",
"start": "node dist/index.js",
"start:dev": "ts-node src/index.ts",
"test": "npx jest",
"example": "npx ts-node"
},
"keywords": [
"trading",
"bot",
"crypto",
"algorithmic",
"market-making",
"arbitrage",
"typescript",
"hummingbot"
],
"author": "WaspBot Team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/WaspBot/waspbot-ts.git"
},
"bugs": {
"url": "https://github.com/WaspBot/waspbot-ts/issues"
},
"homepage": "https://github.com/WaspBot/waspbot-ts#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/json-schema": "^7.0.15",
"@types/luxon": "^3.7.1",
"@types/node": "^20.19.24",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.5.0",
"axios-retry": "^3.4.0",
"decimal.js": "^10.6.0",
"dotenv": "17.2.3",
"eventemitter3": "^5.0.1",
"jest": "^30.2.0",
"luxon": "^3.7.2",
"ts-jest": "^29.4.5",
"uuid": "^9.0.1",
"ws": "^8.18.3"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}