-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.73 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
{
"name": "bitgesell-wallet",
"version": "0.9.9",
"description": "Bitgesell Wallet JS",
"homepage": "https://app.bglwallet.io",
"bugs": "https://github.com/epexa/bitgesell-wallet/issues",
"license": "Proprietary",
"author": "epexa",
"type": "module",
"repository": "epexa/bitgesell-wallet",
"config": {
"IP": "127.0.0.1",
"PORT": "8080",
"DIST_FOLDER": "../bitgesell-wallet-dist"
},
"scripts": {
"prepare": "husky",
"eslint": "eslint 'src/**/*.js' --ignore-pattern 'src/assets/**'",
"start": "npm run eslint && IP=$npm_package_config_IP PORT=$npm_package_config_PORT node dev",
"build": "npm run eslint && node build $npm_package_config_DIST_FOLDER",
"build-webextension": "npm run eslint && node build ../bitgesell-wallet-webextensions",
"dist-start": "serve $npm_package_config_DIST_FOLDER -l tcp://$npm_package_config_IP:$npm_package_config_PORT",
"ngrok": "ngrok http $npm_package_config_PORT"
},
"targets": {
"default": {}
},
"alias": {
"dayjs": "dayjs/esm/index.js"
},
"devDependencies": {
"chokidar": "^4.0.3",
"eslint": "^9.21.0",
"eslint-config-google": "^0.14.0",
"husky": "^9.1.7",
"parcel": "^2.14.1",
"serve": "^14.2.4",
"svgo": "^3.3.2"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.2.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"aes4js": "^1.0.0",
"bip32": "^5.0.0-rc.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.7",
"bitgesell-bitcoinjs": "^1.0.6",
"bootstrap": "^5.3.3",
"buffer": "^6.0.3",
"datatables.net-bs5": "^2.2.2",
"datatables.net-responsive-bs5": "^3.0.4",
"dayjs": "^1.11.13",
"ecpair": "^3.0.0",
"satoshi-bitcoin": "^1.0.5",
"sweetalert2": "^11.17.2"
}
}