-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "bitcoin-streamer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/app.js --exec babel-node -e js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./dist/ && tsc",
"build-and-start": "npm run build && npm start",
"dev": "nodemon ./src/app.ts",
"codegen": "graphql-codegen --config codegen.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.11.6",
"nodemon": "^2.0.22",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@ledgerhq/hw-transport-webhid": "^6.0.0",
"@ledgerhq/hw-transport-webusb": "^6.0.0",
"@metamask/eth-sig-util": "^4.0.0",
"@routerprotocol/router-chain-sdk-ts": "0.8.69-beta-0.8",
"axios": "^1.7.2",
"bitcoin-core": "^4.2.0",
"bson": "^6.8.0",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"ethers": "6.11.1",
"express": "^4.18.2",
"mongodb": "^6.7.0",
"node": "^20.13.1",
"node-cache": "^5.1.2",
"winston": "^3.14.2"
},
"resolutions": {}
}