-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.62 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
{
"name": "conviction-core-api",
"version": "0.1.0",
"private": true,
"description": "Core API service for Conviction Markets.",
"type": "module",
"packageManager": "npm@9.2.0",
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"test": "node --import tsx --test tests/*.test.ts",
"format:check": "prettier --check .",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"markets:sync:polymarket": "tsx src/commands/sync-polymarket-markets.ts",
"executions:reconcile:polymarket": "tsx src/commands/reconcile-polymarket-executions.ts",
"db:push": "prisma db push",
"db:local:up": "docker compose up -d mongo",
"db:local:down": "docker compose down",
"contracts:build": "forge build",
"contracts:test": "forge test",
"contracts:fmt": "forge fmt contracts/src contracts/test contracts/script"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@types/node": "22.10.2",
"eslint": "9.39.4",
"eslint-config-prettier": "9.1.0",
"globals": "15.14.0",
"prettier": "3.4.2",
"prisma": "6.19.3",
"tsx": "4.22.3",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0"
},
"dependencies": {
"@polymarket/builder-signing-sdk": "^1.0.0",
"@polymarket/clob-client-v2": "^1.1.0",
"@prisma/client": "6.19.3",
"@ston-fi/omniston-sdk": "0.8.3",
"dotenv": "16.4.7",
"fastify": "5.8.5",
"viem": "^2.53.1",
"zod": "3.25.76"
},
"overrides": {
"fast-uri": "3.1.2",
"ws": "8.21.0"
}
}