forked from jongseokleedev/cryptoAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "cryptoapi",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "nodemon ./src/app.ts",
"build": "tsc && node dist",
"test": "ts-mocha ./test/**/*.ts --timeout 200000 --exit",
"testbtc": "ts-mocha ./test/btc/*.ts --timeout 200000 --exit",
"testeth": "ts-mocha ./test/eth/*.ts --timeout 200000 --exit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bitcoinjs-lib": "^5.0.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/supertest": "^2.0.12",
"axios": "^1.1.2",
"bip32": "^3.1.0",
"bitcoinjs-lib": "^6.0.2",
"blockcypher": "^0.3.0",
"chai": "^4.3.6",
"domain": "^0.0.1",
"dotenv": "^16.0.3",
"ecpair": "^2.1.0",
"eth-lightwallet": "^4.0.0",
"express": "^4.18.1",
"mocha": "^10.0.0",
"nodemon": "^2.0.20",
"regtest-client": "^0.2.0",
"supertest": "^6.3.0",
"tiny-secp256k1": "^2.2.1",
"ts-mocha": "^10.0.0",
"web3": "^1.8.0"
},
"devDependencies": {
"@types/eth-lightwallet": "^3.0.1",
"@types/express": "^4.17.14",
"@types/node": "^18.8.2",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
},
"description": ""
}