-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 2.05 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
{
"name": "stock-trading-assistant",
"version": "1.0.0",
"description": "Real-time stock trading signals with AI chat assistance",
"private": true,
"workspaces": [
"common-utils",
"backend",
"frontend",
"infra"
],
"scripts": {
"install:all": "npm install && npm run install:packages",
"install:packages": "npm install --workspace=common-utils && npm install --workspace=backend && npm install --workspace=frontend",
"build": "npm run build --workspace=common-utils && npm run build --workspace=backend && npm run build --workspace=frontend",
"build:common": "npm run build --workspace=common-utils",
"build:backend": "npm run build --workspace=backend",
"build:frontend": "npm run build --workspace=frontend",
"start:backend": "./scripts/start-server.sh --mode mock",
"start:backend:demo": "./scripts/start-server.sh --mode mock --interval 2000",
"start:backend:real": "./scripts/start-server.sh --mode real",
"start:frontend": "npm start --workspace=frontend",
"test": "npm test --workspace=common-utils && npm test --workspace=backend && npm test --workspace=frontend",
"test:unit": "npm run test:unit --workspace=common-utils && npm run test:unit --workspace=backend && npm run test:unit --workspace=frontend",
"test:integ": "npm run test:integ --workspace=common-utils && npm run test:integ --workspace=backend && npm run test:integ --workspace=frontend",
"lint": "npm run lint --workspace=common-utils && npm run lint --workspace=backend && npm run lint --workspace=frontend",
"clean": "npm run clean --workspace=common-utils && npm run clean --workspace=backend && rm -rf node_modules",
"demo": "node scripts/demo-di-system.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.50.0",
"typescript": "^5.2.2"
},
"keywords": [
"stock-trading",
"websocket",
"real-time",
"signals",
"dependency-injection",
"monorepo"
],
"author": "Stock Trading Assistant Team",
"license": "MIT"
}