-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.5 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
54
55
56
57
58
59
60
61
62
63
{
"name": "bitfinex-p2p-exchange",
"version": "1.0.0",
"description": "P2P Distributed Exchange for Bitfinex Technical Challenge",
"type": "module",
"engines": {
"node": ">=20.19.5"
},
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"start:client": "node src/clients/example-client.js",
"dev": "node --watch src/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run test/integration/",
"lint": "eslint src/",
"format": "prettier --write .",
"docs": "jsdoc -c jsdoc.config.json"
},
"keywords": [
"p2p",
"exchange",
"trading",
"grenache",
"distributed",
"orderbook"
],
"author": "Raul JM",
"license": "MIT",
"dependencies": {
"decimal.js": "^10.6.0",
"dotenv": "^17.2.2",
"grenache-grape": "^1.0.0",
"grenache-nodejs-http": "^1.0.1",
"grenache-nodejs-link": "^1.0.2",
"pino": "^9.11.0",
"pino-pretty": "^13.1.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.36.0",
"jsdoc": "^4.0.4",
"prettier": "^3.6.2",
"vitest": "^3.2.4"
},
"exports": {
".": {
"import": "./src/index.js"
},
"./orderbook": {
"import": "./src/core/orderbook.js"
},
"./grenache-service": {
"import": "./src/services/grenache-service.js"
},
"./exchange-client": {
"import": "./src/clients/exchange-client.js"
}
}
}