forked from blockworks-foundation/market-maker-ts
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.31 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
{
"name": "market-marker",
"version": "1.0.0",
"repository": "git@github.com:blockworks-foundation/market-maker-ts.git",
"license": "MIT",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"mm": "ts-node src/mm.ts",
"scratch": "ts-node src/scratch.ts",
"format": "prettier --check .",
"cancel": "ts-node src/cancel.ts",
"cancel-farm": "ts-node src/cancel-farm.ts",
"cancel-immediately": "ts-node src/cancel-immediately.ts",
"wash": "ts-node src/wash.ts",
"wash-drop": "ts-node src/wash-drop.ts",
"scan": "ts-node src/scan.ts",
"check-hit": "ts-node src/check-hit.ts",
"wick": "ts-node src/wick.ts",
"wick-farm": "ts-node src/wick-farm.ts",
"hedge": "ts-node src/hedge.ts",
"ioc": "ts-node src/ioc.ts",
"check-owner": "ts-node src/check-owner.ts",
"competition": "ts-node src/competition.ts"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/big.js": "^6.1.1",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.14",
"@types/jest": "^26.0.9",
"@types/mocha": "^8.2.0",
"@types/node": "^15.12.4",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.3.4",
"cross-env": "^7.0.2",
"eslint": "^7.28.0",
"eslint-config-prettier": "^7.2.0",
"mocha": "^8.4.0",
"prettier": "^2.0.5",
"ts-node": "^9.1.1",
"typedoc": "^0.22.5",
"typescript": "^4.1.3"
},
"files": [
"lib"
],
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@blockworks-foundation/mango-client": "git+https://github.com/blockworks-foundation/mango-client-v3.git",
"@project-serum/anchor": "^0.16.2",
"@project-serum/serum": "0.13.55",
"@project-serum/sol-wallet-adapter": "^0.2.0",
"@solana/spl-token": "^0.1.6",
"@solana/web3.js": "1.31.0",
"axios": "^0.21.1",
"big.js": "^6.1.1",
"bigint-buffer": "^1.1.5",
"bn.js": "^5.2.0",
"buffer-layout": "^1.2.1",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"inspirational-quotes": "^2.0.1",
"tardis-dev": "^13.1.3",
"telegraf": "^4.7.0"
},
"resolutions": {
"bn.js": "5.1.3",
"@types/bn.js": "5.1.0",
"@solana/web3.js": "^1.31.0"
}
}