-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "ts-market-maker",
"version": "0.0.1",
"description": "Market making on Solana with Phoenix",
"main": "./src/index.ts",
"repository": "[email protected]:R-K-H/ts-market-maker.git",
"author": "Kollan House <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsup",
"start": "ts-node -T src/index.ts",
"mainnet-w": "ts-node -T src/withdraw.ts",
"prepare": "husky install",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "vitest"
},
"lint-staged": {
"*.ts": "prettier -w \"**/*\" --ignore-unknown --cache"
},
"dependencies": {
"@coral-xyz/anchor": "0.28.1-beta.2",
"@ellipsis-labs/phoenix-sdk": "^2.0.1",
"@metaplex-foundation/beet": "^0.7.1",
"@metaplex-foundation/rustbin": "^0.3.1",
"@metaplex-foundation/solita": "^0.20.0",
"@openbook-dex/openbook-v2": "^0.0.6",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.78.0",
"@stdlib/utils-circular-buffer": "^0.0.7",
"binance": "^2.8.6",
"bn.js": "^5.2.1",
"borsh": "^0.7.0",
"bs58": "^5.0.0",
"limited-cache": "^2.1.1",
"tslog": "^4.8.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/node": "^20.9.0",
"@types/node-fetch": "^2.6.9",
"@types/websocket": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"rpc-websockets": "^7.5.1",
"ts-node": "^10.9.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.34.6"
}
}