-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1013 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1013 Bytes
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
{
"name": "btcv-payouts",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"p2pkh": "nodemon --exec babel-node src/p2pkh.js",
"p2sh": "nodemon --exec babel-node src/p2sh-p2wpkh.js"
},
"license": "WHATEVER",
"dependencies": {
"axios": "^0.21.1",
"bip32": "^2.0.6",
"bip39": "^3.0.3",
"bitcoinjs-lib": "^5.2.0",
"body-parser": "^1.19.0",
"crypto": "^1.0.1",
"express": "^4.17.1",
"mongodb": "^3.6.3",
"ramda": "^0.27.1",
"regtest-client": "0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"eslint": "^7.19.0",
"nodemon": "^2.0.7",
"webpack": "4.46.0",
"webpack-cli": "^4.5.0",
"webpack-node-externals": "^2.5.2"
}
}