-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.43 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
{
"name": "stellar-bridge-watch",
"version": "0.1.0",
"description": "Open-source monitoring platform for cross-chain asset bridges, DEX liquidity, and bridged asset health on the Stellar network",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "npm run build --workspaces --if-present",
"build:backend": "npm run build --workspace=backend",
"build:frontend": "npm run build --workspace=frontend",
"test": "npm run test --workspaces --if-present",
"test:backend": "npm run test --workspace=backend",
"test:load": "k6 run load-tests/scenarios/api-load.js -e PROFILE=smoke -e BASE_URL=http://127.0.0.1:3001",
"test:load:report": "node load-tests/scripts/generate-report.mjs load-tests/results/summary.json load-tests/results/report.md",
"lint": "npm run lint --workspaces --if-present",
"setup": "bash scripts/setup.sh",
"setup:quick": "bash scripts/setup.sh --skip-contracts --skip-ide -y"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/StellaBridge/Bridge-Watch.git"
},
"license": "MIT",
"keywords": [
"stellar",
"bridge",
"monitoring",
"defi",
"soroban",
"cross-chain",
"liquidity",
"analytics"
]
}