-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
89 lines (89 loc) · 3.48 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
{
"name": "@nimiq/wallet",
"version": "0.1.0",
"private": false,
"author": "Nimiq (https://www.nimiq.com)",
"scripts": {
"pre": "yarn i18n:extract && test -e public/bitcoin/BitcoinJS.min.js || yarn build:bitcoinjs",
"serve": "yarn pre && yarn vue-cli-service serve --port 8081",
"build": "yarn pre && yarn vue-cli-service build",
"build:ci": "yarn pre && build=testnet yarn vue-cli-service build",
"build:bitcoinjs": "yarn --silent browserify bitcoinjs-parts.js -p common-shakeify -s BitcoinJS | yarn terser --compress --mangle --source-map --output public/bitcoin/BitcoinJS.min.js",
"lint": "vue-cli-service lint --no-fix",
"i18n:extract": "node ./node_modules/webpack-i18n-tools/index.js ./src/i18n/en.po",
"i18n:pull": "tx pull -l es,zh,de,fr,nl,ru,uk --parallel --no-interactive --force --minimum-perc 50",
"i18n:push": "tx push --source",
"i18n:sync": "yarn i18n:extract && yarn i18n:push; yarn i18n:pull",
"utils:getBankList": "node ./scripts/getBankList.js",
"release": "./release.sh",
"test": "echo 'No tests'"
},
"main": "src/main.ts",
"dependencies": {
"@formatjs/intl-displaynames": "^3.3.4",
"@linusborg/vue-simple-portal": "^0.1.4",
"@nimiq/electrum-client": "https://github.com/nimiq/electrum-client#build",
"@nimiq/fastspot-api": "^1.5.2",
"@nimiq/hub-api": "^1.5.0-beta.1",
"@nimiq/iqons": "^1.5.2",
"@nimiq/network-client": "^0.6.5",
"@nimiq/style": "^0.8.2",
"@nimiq/utils": "^0.6.0",
"@nimiq/vue-components": "https://github.com/nimiq/vue-components#build/wallet",
"@sentry/vue": "^6.3.0",
"@types/iban": "^0.0.32",
"@unstoppabledomains/resolution": "^5.0.1",
"@vue/composition-api": "^0.4.0",
"chart.js": "^3.1.1",
"chartjs-adapter-luxon": "^1.0.0",
"core-js": "^3.6.4",
"iban": "^0.0.14",
"idb-keyval": "^5.0.2",
"luxon": "^1.27.0",
"pinia": "^0.0.5",
"promise.allsettled": "^1.0.2",
"register-service-worker": "^1.7.0",
"safari-14-idb-fix": "^1.0.3",
"v-click-outside": "^3.0.1",
"vue": "^2.6.11",
"vue-i18n": "^8.15.5",
"vue-responsive-components": "^0.2.3",
"vue-router": "^3.1.6",
"vue-simple-markdown": "^1.1.4",
"vue-virtual-scroller": "https://github.com/sisou/vue-virtual-scroller#nimiq/build",
"webpack-i18n-tools": "https://github.com/nimiq/webpack-i18n-tools#master"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@nimiq/core-web": "1.5.8",
"@types/promise.allsettled": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"@vue/cli-plugin-babel": "~4.5.10",
"@vue/cli-plugin-eslint": "~4.5.10",
"@vue/cli-plugin-pwa": "~4.5.10",
"@vue/cli-plugin-router": "~4.5.10",
"@vue/cli-plugin-typescript": "~4.5.10",
"@vue/cli-service": "~4.5.10",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-typescript": "^5.0.2",
"bitcoinjs-lib": "5.2.0",
"browserify": "^16.5.0",
"buffer": "5.6.0",
"cheerio": "^1.0.0-rc.6",
"common-shakeify": "^0.6.2",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-vue": "^6.2.2",
"node-fetch": "^2.6.1",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"typescript": "^4.0.0",
"vue-template-compiler": "^2.6.11",
"webpack-subresource-integrity": "^1.5.2",
"xlsx": "^0.17.0"
},
"license": "Apache-2.0"
}