-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.32 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.32 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
{
"name": "marketpulse",
"version": "2.0.0-alpha.0",
"private": true,
"description": "企业级金融智能助手 - AI-powered financial assistant",
"author": "MarketPulse Team",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently -n chroma,server -c blue,green \"bun run dev:chroma\" \"bun run dev:server\"",
"dev:chroma": "chroma run --path ./.chroma",
"dev:server": "bash -c 'echo \"[server] Waiting for ChromaDB...\"; until curl -s http://localhost:8000/api/v1 > /dev/null 2>&1; do sleep 1; done; echo \"[server] ChromaDB ready!\"' && bun run packages/server/src/index.ts",
"dev:web": "cd packages/web && bun run dev",
"dev:all": "concurrently -n chroma,server,web -c blue,green,yellow \"bun run dev:chroma\" \"bun run dev:server\" \"bun run dev:web\"",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"packages/**/*.{ts,tsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@types/bun": "latest",
"concurrently": "9.2.1",
"prettier": "^3.2.0",
"turbo": "^2.3.0",
"typescript": "^5.0.0"
},
"packageManager": "bun@1.1.38",
"engines": {
"node": ">=20.0.0"
}
}