-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 KB
/
package.json
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
{
"name": "electrumx-proxy",
"version": "1.2.6",
"description": "Electrumx Proxy Service",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"lint": "eslint --fix src test",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "CJ R. <cj@null.computer> (https://w3cj.now.sh)",
"repository": {
"type": "git",
"url": "https://github.com/atomicals/electrumx-proxy.git"
},
"license": "MIT",
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.0.5",
"axios": "^1.6.0",
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.1.5",
"borc": "^3.0.0",
"cors": "^2.8.5",
"crockford-base32": "^2.0.0",
"dotenv": "^16.1.4",
"ecpair": "^2.1.0",
"electrum-client": "file:./electrum-client",
"express": "^4.18.2",
"express-prettify": "^0.1.2",
"express-slow-down": "^1.6.0",
"helmet": "^7.0.0",
"js-sha256": "^0.10.1",
"mime-types": "^2.1.35",
"morgan": "^1.10.0",
"rpc-websockets": "^7.6.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/morgan": "^1.9.4",
"@types/node": "^20.2.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "<5.1.0"
}
}