forked from hashgraph/hedera-mirror-node-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.74 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": "hedera-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "npm run install:branding && vue-cli-service serve",
"serve:https": "npm run install:branding && vue-cli-service serve --https",
"serve:prod": "export VUE_APP_ENABLE_STAKING=true && npm run install:branding && vue-cli-service serve --mode production --port 38920",
"build": "npm run install:branding && vue-cli-service build",
"test:unit": "npm run install:branding && vue-cli-service test:unit --runInBand",
"cover:unit": "npm run install:branding && vue-cli-service test:unit --runInBand --collectCoverage",
"test:e2e": "vue-cli-service test:e2e --url http://localhost:38920",
"test:e2e:headless": "vue-cli-service test:e2e --headless --browser chrome --url http://localhost:38920",
"lint": "vue-cli-service lint",
"install:branding": ". ./src/assets/branding/install-branding.sh",
"build:docker": "docker build . -t ${npm_package_name}",
"docker": "docker run -it --rm -p 8080:8080 --name hedera-explorer ${npm_package_name}:latest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-brands-svg-icons": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/vue-fontawesome": "^3.0.0-5",
"@metamask/detect-provider": "^1.2.0",
"@metamask/providers": "^9.1.0",
"@oruga-ui/oruga-next": "^0.5.5",
"axios": "^0.27.2",
"base32-decode": "^1.0.0",
"base32-encode": "^1.2.0",
"bulma": "^0.9.4",
"core-js": "^3.6.5",
"ethers": "^5.6.9",
"vue": "^3.0.0",
"vue-axios": "^3.4.0",
"vue-router": "^4.0.0-0",
"hashconnect": "^0.1.9",
"@bladelabs/blade-web3.js": "^0.9.11",
"@hashgraph/sdk": "^2.18.0",
"@hashgraph/proto": "^2.11.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.12",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli": "^4.5.15",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-e2e-cypress": "~5.0.8",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.15",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.2",
"axios-mock-adapter": "^1.20.0",
"babel-jest": "^24.9.0",
"babel-plugin-istanbul": "^6.1.1",
"cypress": "^9.6.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0",
"resize-observer-polyfill": "~1.5.1",
"sass": "^1.50.1",
"typescript": "~4.1.5",
"vue-jest": "^5.0.0-0"
},
"port": "8080",
"nyc": {
"report-dir": "tests/coverage/e2e"
}
}