-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "cryptoquant-ai",
"version": "0.1.0",
"description": "Local-first quantitative crypto trading dashboard with OKX integration, backtesting, risk controls, and AI-assisted summaries.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "node scripts/run-server.mjs development",
"build": "vite build",
"start:prod": "node scripts/run-server.mjs production",
"preview": "vite preview",
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"lint": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"axios": "^1.15.0",
"ccxt": "^4.5.48",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"https-proxy-agent": "^9.0.0",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"nodemailer": "^8.0.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.8.1",
"tailwind-merge": "^3.5.0",
"vite": "^6.2.0",
"yahoo-finance2": "^3.14.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.21",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^4.1.4"
}
}