-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 2.87 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
47
48
49
50
51
52
53
{
"name": "verinode-backend",
"version": "1.0.0",
"description": "Backend API for VeriNode — decentralized savings circles (ROSCA) protocol on Stellar Soroban",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "npx ts-node --project tsconfig.json tests/config.test.ts && npx ts-node --project tsconfig.json tests/slashing_sequencer.test.ts && npx ts-node --project tsconfig.json tests/notifications/slashingNotifier.test.ts && npx ts-node --project tsconfig.json tests/staking/bondPool.test.ts && npx ts-node --project tsconfig.json tests/uptime_queries.test.ts && npx ts-node --project tsconfig.json tests/tracer.test.ts && npx ts-node --project tsconfig.json tests/pool_isolation.test.ts && npx ts-node --project tsconfig.json tests/mtls.test.ts && npx ts-node --project tsconfig.json tests/tls_rotation.test.ts && npx ts-node --project tsconfig.json tests/reputation/scoreService.test.ts && npx ts-node --project tsconfig.json tests/rewards/distributor.test.ts && npx ts-node --project tsconfig.json tests/blockchain/preflight_analyzer.test.ts && npx ts-node --project tsconfig.json tests/blockchain/rpc_client.test.ts && npx ts-node --project tsconfig.json tests/blockchain/transaction_builder.test.ts && npx ts-node --project tsconfig.json tests/state_archival.test.ts && npx ts-node --project tsconfig.json tests/dead_letter_queue.test.ts && TS_NODE_TRANSPILE_ONLY=true npx ts-node --project tsconfig.json tests/core/attestation/engine_extra.test.ts",
"test:reputation": "npx ts-node --project tsconfig.json tests/reputation/scoreService.test.ts",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VeriNode-Labs/verinode-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/VeriNode-Labs/verinode-backend/issues"
},
"homepage": "https://github.com/VeriNode-Labs/verinode-backend#readme",
"dependencies": {
"@noble/curves": "^2.2.0",
"@noble/ed25519": "^3.1.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.219.0",
"@opentelemetry/instrumentation": "^0.219.0",
"@opentelemetry/instrumentation-express": "^0.67.0",
"@opentelemetry/instrumentation-http": "^0.219.0",
"@opentelemetry/resources": "^2.8.0",
"@opentelemetry/sdk-node": "^0.219.0",
"@opentelemetry/sdk-trace-base": "^2.8.0",
"@opentelemetry/sdk-trace-node": "^2.8.0",
"@opentelemetry/semantic-conventions": "^1.41.1",
"acme-client": "^5.4.0",
"cors": "^2.8.6",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"pg": "^8.22.0"
},
"devDependencies": {
"@opentelemetry/core": "^2.8.0",
"@types/express": "^5.0.6",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.0.0",
"@types/pg": "^8.20.0",
"c8": "^11.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.0"
}
}