-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.76 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
{
"name": "parallax",
"version": "0.1.0",
"description": "Tokenized stock arbitrage trading system on Solana",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "trap 'kill $(jobs -p) 2>/dev/null' EXIT; cloudflared tunnel run parallax >/dev/null 2>&1 & node dist/index.js",
"start:notunnel": "node dist/index.js",
"dev": "ts-node src/index.ts",
"paper": "TRADING_MODE=paper ts-node src/index.ts",
"shadow": "TRADING_MODE=shadow ts-node src/index.ts",
"dashboard": "ts-node src/dashboard/cli.ts",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"@raydium-io/raydium-sdk-v2": "^0.2.32-alpha",
"@solana/spl-token": "^0.3.9",
"@solana/web3.js": "^1.87.6",
"@supabase/supabase-js": "^2.94.1",
"axios": "^1.6.2",
"bs58": "^5.0.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"flash-sdk": "^11.14.0",
"node-cron": "^3.0.3",
"pg": "^8.17.0",
"pino": "^8.17.1",
"pino-pretty": "^10.3.0",
"twitter-api-v2": "^1.29.0",
"ws": "^8.14.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/bn.js": "^5.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.4",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.16.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"puppeteer": "^24.36.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}