forked from JSKitty/scc-web3
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
103 lines (103 loc) · 3.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "mypivxwallet",
"version": "2.0.1",
"description": "Wallet for PIVX",
"main": "scripts/index.js",
"type": "module",
"scripts": {
"postinstall": "node postinstall.cjs",
"build": "webpack --config webpack.prod.js",
"buildDev": "webpack --config webpack.dev.js",
"watch": "webpack --watch",
"dev": "webpack serve --config webpack.dev.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"prettier": "prettier --write --cache .",
"lint": "eslint .",
"test": "vitest",
"coverage": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PIVX-Labs/MyPIVXWallet.git"
},
"keywords": [
"crypto",
"PIVX",
"wallet"
],
"author": "PIVX Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/PIVX-Labs/MyPIVXWallet/issues"
},
"homepage": "https://github.com/PIVX-Labs/MyPIVXWallet#readme",
"devDependencies": {
"@fluent/langneg": "^0.7.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vitejs/plugin-vue": "^4.4.1",
"@vitest/coverage-istanbul": "^1.0.2",
"@vue/preload-webpack-plugin": "^2.0.0",
"@vue/test-utils": "^2.4.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.31.0",
"fake-indexeddb": "^5.0.1",
"file-loader": "^6.2.0",
"gh-pages": "^5.0.0",
"happy-dom": "^12.10.3",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"node-polyfill-webpack-plugin": "^2.0.1",
"prettier": "^2.8.1",
"raw-loader": "^4.0.2",
"resource-loader": "^4.0.0-rc4",
"toml": "^3.0.0",
"vitest": "^1.0.2",
"vue-loader": "^17.2.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@fontsource/chivo": "^4.5.11",
"@fontsource/montserrat": "^4.5.14",
"@fortawesome/fontawesome-free": "^6.2.1",
"@ledgerhq/hw-app-btc": "^9.1.1",
"@ledgerhq/hw-transport-webusb": "^6.27.9",
"@noble/hashes": "^1.1.5",
"@noble/secp256k1": "^1.7.0",
"@popperjs/core": "^2.11.6",
"@vueuse/core": "^11.1.0",
"base32": "^0.0.7",
"bech32": "^2.0.0",
"biginteger": "^1.0.3",
"bip39": "^3.0.4",
"bootstrap-4": "^4.0.0",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"chart.js": "^4.2.1",
"country-locale-map": "^1.8.15",
"create-xpub": "^2.1.0",
"hdkey": "^2.0.1",
"idb": "^7.1.1",
"ip-address": "^8.1.0",
"jquery": "^3.6.3",
"pinia": "^2.1.7",
"pivx-promos": "^0.2.0",
"pivx-shield": "^1.1.6",
"pivx-shield-rust": "^1.1.6",
"pivx-shield-rust-multicore": "^1.1.10",
"qr-scanner": "^1.4.2",
"qrcode-generator": "^1.4.4",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"alias": {
"@ledgerhq/devices": "@ledgerhq/devices/lib-es"
}
}