forked from unik-name/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 4.95 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "unikname.network-explorer",
"version": "3.0.0",
"description": "A Blockchain Explorer for unikname.network using Vue.js and Tailwind CSS",
"author": "Brian Faust",
"scripts": {
"postinstall": "patch-package",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "yarn test:unit && yarn test:e2e",
"lint": "vue-cli-service lint --fix",
"build:devnet": "vue-cli-service build --network devnet",
"build:dalinet": "vue-cli-service build --network dalinet",
"build:mainnet": "vue-cli-service build --network mainnet",
"build:testnet": "vue-cli-service build --network testnet",
"build:sandbox": "vue-cli-service build --network sandbox",
"build:livenet": "vue-cli-service build --network livenet",
"build:network": "vue-cli-service build --network ${CURRENT_NETWORK}",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
"serve:devnet": "vue-cli-service serve --network devnet",
"serve:dalinet": "vue-cli-service serve --network dalinet",
"serve:mainnet": "vue-cli-service serve --network mainnet",
"serve:testnet": "vue-cli-service serve --network testnet",
"serve:sandbox": "vue-cli-service serve --network sandbox",
"serve:livenet": "vue-cli-service serve --network livenet",
"serve:network": "vue-cli-service serve --network ${CURRENT_NETWORK}",
"task:deploy": "cross-env-shell ./scripts/deploy.sh",
"task:deploy:workflow": "cross-env-shell ./scripts/deploy-via-workflow.sh",
"test:e2e": "vue-cli-service test:e2e",
"test:e2e:ci": "vue-cli-service test:e2e --headless",
"test:unit": "vue-cli-service test:unit --maxWorkers=2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@types/nprogress": "^0.2.0",
"@uns/ts-sdk": "^4.2.3-dev",
"animate.css": "^3.7.2",
"axios": "^0.19.0",
"bad-words": "^3.0.3",
"bignumber.js": "^9.0.0",
"bs58check": "^2.1.2",
"buffer": "^5.4.3",
"censorify-it": "^2.1.2",
"chart.js": "^2.9.3",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^3.5.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-emoji": "^1.10.0",
"nprogress": "^0.2.0",
"portal-vue": "^2.1.6",
"qrious": "^4.0.2",
"ripemd160": "^2.0.2",
"secp256k1": "^3.7.1",
"simple-sha256": "^1.0.0",
"v-tooltip": "^2.0.2",
"vue": "^2.6.10",
"vue-chartjs": "^3.5.0",
"vue-class-component": "^7.1.0",
"vue-i18n": "^8.15.1",
"vue-matomo": "^3.13.0-2",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.3",
"vue-spinner": "^1.0.3",
"vuex": "^3.1.2",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.0.0",
"@kazupon/vue-i18n-loader": "^0.5.0",
"@types/bytebuffer": "^5.0.40",
"@types/jest": "^25.0.0",
"@types/lodash": "^4.14.149",
"@types/node-emoji": "^1.8.1",
"@types/prettier": "^1.19.0",
"@types/webpack": "^4.41.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-e2e-cypress": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-plugin-typescript": "^4.1.1",
"@vue/cli-plugin-unit-jest": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.1",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"big-integer": "^1.6.48",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.0",
"es6-promise": "^4.2.8",
"es6-promise-promise": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.0",
"eslint-plugin-vue": "^6.1.2",
"husky": "^4.2.5",
"jest-extended": "^0.11.2",
"jest-localstorage-mock": "^2.4.0",
"lint-staged": "^10.2.10",
"minimist": "^1.2.3",
"moment-timezone": "^0.5.27",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"sinon": "^9.0.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"tailwindcss": "^1.1.4",
"ts-jest": "^25.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.3",
"vue-cli-plugin-i18n": "^0.6.0",
"vue-cli-plugin-svg-sprite": "^1.0.0",
"vue-good-table": "^2.18.1",
"vue-template-compiler": "^2.6.10"
},
"bugs": {
"url": "https://github.com/arkecosystem/explorer/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arkecosystem/explorer.git"
}
}