-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 3.29 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
69
70
71
72
73
74
75
76
77
78
{
"name": "marketmind-monorepo",
"version": "1.28.0",
"description": "MarketMind Monorepo - trading platform",
"keywords": [
"trading",
"crypto",
"cryptocurrency",
"charts",
"klines",
"candlestick",
"technical-analysis",
"indicators",
"backtesting",
"auto-trading",
"binance",
"futures",
"electron",
"desktop"
],
"author": "Nathan Santos",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=11.0.0"
},
"scripts": {
"dev": "pnpm --parallel --filter @marketmind/backend --filter @marketmind/electron dev",
"dev:web": "pnpm --filter @marketmind/electron dev:web",
"dev:backend": "pnpm --filter @marketmind/backend dev",
"dev:frontend": "pnpm --filter @marketmind/electron dev",
"dev:all": "pnpm --parallel --filter @marketmind/backend --filter @marketmind/electron --filter @marketmind/types --filter @marketmind/trading-core --filter @marketmind/utils --filter @marketmind/fibonacci --filter @marketmind/chart-studies --filter @marketmind/logger --filter @marketmind/risk --filter @marketmind/tokens --filter @marketmind/ui dev",
"build": "pnpm --filter @marketmind/electron build",
"build:web": "pnpm --filter @marketmind/electron build:web",
"build:backend": "pnpm --filter @marketmind/backend build",
"build:all": "pnpm -r build",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"lint:shades": "node scripts/audit/shade-literals.mjs",
"lint:dialogs": "node scripts/audit/dialog-rules.mjs",
"lint:dialogs:strict": "node scripts/audit/dialog-rules.mjs --strict",
"lint:panels": "node scripts/audit/panel-rules.mjs",
"lint:panels:strict": "node scripts/audit/panel-rules.mjs --strict",
"lint:i18n:dialogs": "node scripts/audit/dialog-i18n-keys.mjs",
"lint:i18n:coverage": "node scripts/audit/i18n-key-coverage.mjs",
"lint:i18n:coverage:all": "node scripts/audit/i18n-key-coverage.mjs --all",
"type-check": "pnpm -r type-check",
"test": "pnpm -r test",
"test:run": "pnpm -r test:run",
"clean": "pnpm -r clean && rm -rf node_modules",
"mcp:install": "node scripts/mcp-install.mjs",
"mcp:uninstall": "node scripts/mcp-install.mjs --uninstall",
"mcp:install:dry-run": "node scripts/mcp-install.mjs --dry-run",
"mcp:build": "pnpm -r --filter \"@marketmind/mcp-*\" build",
"mcp:ensure-build": "node scripts/ensure-mcp-build.mjs",
"postinstall": "node scripts/ensure-mcp-build.mjs",
"refactor:audit:files": "bash scripts/audit/files.sh",
"refactor:audit:types": "bash scripts/audit/types.sh",
"refactor:audit:indicators": "bash scripts/audit/indicators.sh",
"refactor:analyze-comments": "node scripts/analyze-comments.mjs",
"refactor:remove-comments": "node scripts/remove-comments.mjs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.70.1",
"@typescript-eslint/parser": "^8.70.1",
"eslint": "^10.11.0",
"globals": "^17.12.0",
"pixelmatch": "^7.2.0",
"pngjs": "^7.0.0",
"prettier": "^3.9.9",
"tsx": "^4.23.15",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@11.20.0+sha512.9a6f330a95b66446ea088faf1521405a8a01f07fde7124cc9958dfed52d4bb436737e65b08f85f37b46fcba375092558ac51262b816844b22f63406ed166bfee"
}