chore: 初始化项目骨架 — 数据模块依赖配置、TimescaleDB 建表脚本、Docker Compose 编排

This commit is contained in:
Rekey
2026-06-06 19:56:01 +08:00
commit 10e13ae8da
7 changed files with 2120 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"name": "trade-data",
"version": "0.1.0",
"description": "数字货币量化交易系统 - TypeScript 数据模块",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"format": "prettier --write src/"
},
"dependencies": {
"binance": "^3.5.9",
"ccxt": "^4.5.56",
"ioredis": "^5.11.1",
"pg": "^8.21.0",
"pino": "^10.3.1",
"ws": "^8.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.9.2",
"@types/pg": "^8.20.0",
"@types/ws": "^8.18.1",
"eslint": "^10.4.1",
"prettier": "^3.8.3",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}