-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 943 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 943 Bytes
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
{
"name": "pma",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "bun run ./main.ts",
"build": "bun build ./main.ts --outdir dist",
"start": "bun ./main.js",
"test": "bun test/test.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@dome-api/sdk": "^0.0.2",
"@polymarket/clob-client": "^4.22.7",
"axios": "^1.12.2",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"ethers": "^5.8.0",
"exceljs": "^4.4.0",
"openai": "^6.3.0",
"pg": "^8.16.3",
"telegraf": "^4.16.3",
"wss": "^3.3.4"
},
"devDependencies": {
"@types/node": "^24.7.2",
"@types/pg": "^8.16.0",
"drizzle-kit": "^0.31.8",
"typescript": "^5.9.3"
}
}