-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.34 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.34 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
{
"name": "polymarket-insight-extractor",
"version": "1.0.0",
"private": true,
"description": "Polymarket Insight Extractor (research-only market discovery + analysis; no trading).",
"scripts": {
"dev": "concurrently -k -n backend,frontend -c blue,green \"npm -w backend run dev\" \"npm -w frontend run dev\"",
"dev:backend": "npm -w backend run dev",
"dev:frontend": "npm -w frontend run dev",
"build": "npm -w @polymarket-insight/shared run build && npm -w backend run build && npm -w frontend run build",
"build:pages": "npm -w @polymarket-insight/shared run build && npm -w frontend run build",
"lint": "npm -w backend run lint && npm -w frontend run lint",
"test": "npm -w backend run test && npm -w frontend run test"
},
"workspaces": [
"frontend",
"backend",
"packages/shared"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NadeeshaNJ/PolyMarket-Extractor.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/NadeeshaNJ/PolyMarket-Extractor/issues"
},
"homepage": "https://github.com/NadeeshaNJ/PolyMarket-Extractor#readme",
"devDependencies": {
"@cloudflare/workers-types": "^4.20260317.1",
"concurrently": "^9.2.1"
},
"dependencies": {
"@polymarket/clob-client": "^5.8.0",
"ethers": "^5.8.0"
}
}