-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
83 lines (83 loc) · 1.96 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
{
"name": "mango-bowl",
"version": "0.3.2",
"engines": {
"node": ">=15"
},
"description": "Real-time WebSocket market data API server for Mango DEX",
"main": "dist/index.js",
"source": "src/index.js",
"types": "dist/index.d.ts",
"repository": "tardis-dev/mango-bowl",
"homepage": "https://github.com/tardis-dev/mango-bowl",
"scripts": {
"build": "tsc",
"precommit": "lint-staged",
"test": "npm run build && jest --forceExit",
"prepare": "npm run build",
"start:debug": "npm run build && node ./bin/mango-bowl.js --log-level=debug",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"bin": {
"mango-bowl": "bin/mango-bowl.js"
},
"files": [
"src",
"dist",
"bin"
],
"keywords": [
"mango dex",
"mango api",
"API client",
"solana",
"cryptocurrency API",
"exchange",
"defi",
"real-time market data API",
"DEX API"
],
"license": "MPL-2.0",
"dependencies": {
"@blockworks-foundation/mango-client": "^3.2.25",
"@solana/web3.js": "^1.31.0",
"@types/bintrees": "^1.0.3",
"@types/bn.js": "^5.1.0",
"abort-controller": "^3.0.0",
"bintrees": "^1.0.2",
"bn.js": "^5.2.0",
"didyoumean2": "^5.0.0",
"is-docker": "^2.2.1",
"node-fetch": "^2.6.1",
"uWebSockets.js": "git+https://git@github.com/uNetworking/uWebSockets.js.git#v20.6.0",
"winston": "^3.4.0",
"ws": "^8.4.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/node-fetch": "^2.5.12",
"@types/ws": "^8.2.2",
"cross-var": "^1.1.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
"\\.(ts|tsx)?$": "ts-jest"
},
"testEnvironment": "node"
}
}