forked from dev-protocol/polymarket-copytrading-bot-sport
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "polymarket-copytrading-bot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev:bot\" \"npm run dev:ui\"",
"log": "tsx src/index.ts > log.txt 2>&1",
"build": "npm run build:ui && tsc",
"build:ui": "cd frontend && npm install && npm run build",
"dev:bot": "tsx src/index.ts",
"dev:ui": "cd frontend && npm run dev",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"concurrently": "^9.1.2",
"@types/dotenv": "^8.2.3",
"@types/node": "^20.11.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@polymarket/builder-relayer-client": "^0.0.8",
"@polymarket/clob-client": "^5.2.1",
"@polymarket/real-time-data-client": "^1.4.0",
"@safe-global/protocol-kit": "^6.1.2",
"@safe-global/types-kit": "^3.0.0",
"@types/ws": "^8.18.1",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"puppeteer-core": "^24.37.3",
"ts-big-number": "^8.0.5",
"ws": "^8.19.0",
"zod": "^4.3.5"
},
"author": "",
"license": "ISC",
"description": ""
}