-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.72 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.72 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
61
62
63
64
65
66
67
68
{
"name": "openpolytrader",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/main.js",
"scripts": {
"help": "bash scripts/help.sh",
"h": "npm run help",
"postinstall": "node scripts/postinstall-arch-guard.mjs",
"dev": "tsx src/main.ts",
"dev:up": "npm run dev:ops",
"dev:ops": "bash scripts/dev-up.sh",
"dev:ops:down": "bash scripts/dev-down.sh",
"dev:ops:status": "bash scripts/dev-status.sh",
"dev:ops:smoke": "bash scripts/dev-lifecycle-smoke.sh",
"paper:up": "npm run dev:ops",
"paper:down": "npm run dev:ops:down",
"paper:status": "npm run dev:ops:status",
"paper:smoke": "npm run dev:ops:smoke",
"dev:live": "docker compose up -d && npm --prefix dashboard run dev",
"dev:live:down": "docker compose down",
"build": "tsc -p tsconfig.json",
"build:all": "npm run build && npm --prefix dashboard run build && docker compose build",
"build:all:up": "npm run build:all && docker compose up -d",
"build:all:live": "npm run build:all && npm run dev:live",
"prestart": "node dist/tools/marketCatalogPrestartCli.js",
"start": "node dist/main.js",
"lint": "eslint . --ext .ts --max-warnings=0",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage --no-file-parallelism --maxWorkers=1",
"polymarket:check": "tsx scripts/polymarketLiveCheck.ts",
"polymarket:authcheck": "tsx scripts/polymarketAuthCheck.ts",
"polymarket:derive-creds": "tsx scripts/polymarketDeriveApiCreds.ts",
"llm:smoke": "tsx scripts/llmSmokeTest.ts",
"catalog:refresh:dev": "tsx src/tools/marketCatalogGeneratorCli.ts --mode near-zero --verify-books --require-metadata --yesno-only --merge",
"catalog:refresh": "node dist/tools/marketCatalogGeneratorCli.js --mode near-zero --verify-books --require-metadata --yesno-only --merge",
"catalog:relations:dev": "tsx src/tools/dependencyRelationCatalogCli.ts",
"catalog:relations": "node dist/tools/dependencyRelationCatalogCli.js"
},
"dependencies": {
"@fastify/cors": "^8.5.0",
"better-sqlite3": "^9.6.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"fastify": "^4.28.1",
"openai": "^4.104.0",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.7.5",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^8.57.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.13.1",
"tsx": "^4.19.1",
"typescript": "5.5.4",
"vitest": "^4.0.16"
}
}