-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.98 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
{
"name": "veta-trading-platform",
"version": "1.56.1",
"private": true,
"description": "VETA Trading Platform — real-time market simulation with algorithmic trading strategies.",
"scripts": {
"prepare": "git config core.hooksPath .husky",
"dev": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"lint": "deno run -A npm:@biomejs/biome lint frontend/src/",
"lint:fix": "deno run -A npm:@biomejs/biome check --write frontend/src/",
"format": "deno run -A npm:@biomejs/biome format --write frontend/src/",
"format:fix": "deno run -A npm:@biomejs/biome format --write frontend/src/",
"typecheck": "deno task check && cd frontend && npm run typecheck",
"test": "deno task test && cd frontend && npm run test:unit -- --run",
"test:backend": "deno task test",
"test:frontend": "cd frontend && npm run test:unit -- --run",
"test:integration": "deno task test:integration",
"test:smoke": "deno task test:smoke",
"test:e2e": "cd frontend && npm run build && npm run test:ui",
"fallow:backend:audit": "cd backend && ../frontend/node_modules/.bin/fallow audit",
"fallow:backend:health": "cd backend && ../frontend/node_modules/.bin/fallow health --score --hotspots",
"fallow:backend:dead-code": "cd backend && ../frontend/node_modules/.bin/fallow dead-code",
"fallow:frontend:audit": "cd frontend && npx fallow audit",
"fallow:frontend:health": "cd frontend && npx fallow health --score --hotspots",
"fallow:frontend:dead-code": "cd frontend && npx fallow dead-code",
"fallow:audit": "npm run fallow:backend:audit && npm run fallow:frontend:audit",
"fallow:health": "npm run fallow:backend:health && npm run fallow:frontend:health",
"fallow:dead-code": "npm run fallow:backend:dead-code && npm run fallow:frontend:dead-code",
"quality:git": "git diff --check && git diff --cached --check && ! git status --short --untracked-files=normal | grep -q ."
},
"dependencies": {
"kafkajs": "2.2.4"
}
}