-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
72 lines (72 loc) · 3.05 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
{
"name": "@nimiq/hub",
"version": "1.0.0",
"private": true,
"scripts": {
"pre": "yarn i18n:extract && test -e public/bitcoin/BitcoinJS.min.js || yarn build:bitcoinjs",
"serve": "yarn pre && vue-cli-service serve",
"build": "yarn pre && vue-cli-service build --modern App",
"build:ci": "yarn pre && build=testnet 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",
"test:unit": "vue-cli-service test:unit",
"test": "yarn test:unit",
"pr": "yarn lint && yarn build:ci && yarn test && cd client && yarn lint && yarn build",
"postinstall": "patch-package && cd client && yarn",
"update-browserslist": "yarn update-browserslist-db",
"i18n:extract": "node ./node_modules/webpack-i18n-tools/index.js ./src/i18n/en.po",
"i18n:pull": "tx pull --all --force --minimum-perc 90",
"i18n:push": "tx push --source",
"i18n:sync": "yarn i18n:extract && yarn i18n:push ; yarn i18n:pull"
},
"dependencies": {
"@nimiq/browser-warning": "^1.1.1",
"@nimiq/core": "^2.0.5",
"@nimiq/electrum-client": "https://github.com/nimiq/electrum-client#build",
"@nimiq/fastspot-api": "^1.10.2",
"@nimiq/iqons": "^1.5.2",
"@nimiq/keyguard-client": "^1.8.0",
"@nimiq/ledger-api": "^3.1.1",
"@nimiq/oasis-api": "^1.1.1",
"@nimiq/rpc": "^0.4.1",
"@nimiq/style": "^0.8.2",
"@nimiq/utils": "^0.11.1",
"@nimiq/vue-components": "https://github.com/nimiq/vue-components#build/hub",
"@opengsn/common": "^2.2.5",
"@sentry/vue": "^8.40.0",
"big-integer": "^1.6.48",
"ethers": "^5.7.2",
"vue": "^2.6.11",
"vue-i18n": "^8.17.6",
"vue-property-decorator": "^8.4.0",
"vue-router": "^3.0.2",
"vuex": "^3.1.2",
"vuex-class": "^0.3.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.19",
"@vue/cli-plugin-typescript": "~4.5.19",
"@vue/cli-plugin-unit-jest": "~4.5.19",
"@vue/cli-plugin-vuex": "~4.5.19",
"@vue/cli-service": "~4.5.19",
"@vue/test-utils": "^1.0.0-beta.29",
"bitcoinjs-lib": "5.2.0",
"browserify": "^16.5.0",
"buffer": "5.6.0",
"common-shakeify": "^0.6.2",
"copy-webpack-plugin": "^6.4.0",
"core-js": "^3.37.1",
"dtslint": "^4.2.1",
"fake-indexeddb": "^2.0.5",
"jest": "^24.1.0",
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0",
"script-ext-html-webpack-plugin": "^2.1.4",
"ts-jest": "^24.0.0",
"typescript": "~3.8.0",
"vue-template-compiler": "^2.6.11",
"webpack-i18n-tools": "https://github.com/nimiq/webpack-i18n-tools#master",
"webpack-subresource-integrity": "^1.5.2",
"write-file-webpack-plugin": "^4.5.1"
}
}