-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
83 lines (83 loc) · 3.24 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
{
"name": "hedera-explorer",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "npm run install:branding && vite --host",
"dev:http": "npm run install:branding && cp networks-config-http-example.json ./public/networks-config.json && vite --config nossl.config.ts",
"build": "run-p type-check build-only",
"preview": "npm run install:branding && vite preview",
"test:unit": "vitest run",
"cover:unit": "vitest run --coverage",
"test:e2e": "npm run install:branding && START_SERVER_AND_TEST_INSECURE=1 start-server-and-test dev https://localhost:5173 'cypress run --browser chrome --e2e'",
"test:e2e:dev": "npm run install:branding && START_SERVER_AND_TEST_INSECURE=1 start-server-and-test 'vite dev --port 5173' https://localhost:5173 'cypress open --e2e'",
"build-only": "npm run install:branding && vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"install:branding": ". ./src/assets/branding/install-branding.sh",
"docker:build": "npm run build && docker build . --tag gcr.io/hedera-registry/hedera-mirror-node-explorer",
"docker:start": "docker-compose up -d",
"docker:stop": "docker-compose down"
},
"dependencies": {
"@bladelabs/blade-web3.js": "1.2.2",
"@ethereum-sourcify/bytecode-utils": "^1.2.12",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@hashgraph/proto": "^2.15.0",
"@hashgraph/sdk": "^2.53.0",
"@hedera-name-service/hns-resolution-sdk": "^2.0.11",
"@kabuto-sh/ns": "^0.14.2",
"@oruga-ui/oruga-next": "^0.7.0",
"@vuepic/vue-datepicker": "^10.0.0",
"axios": "^1.7.8",
"base32-decode": "^1.0.0",
"base32-encode": "^2.0.0",
"bulma": "^0.9.4",
"core-js": "^3.39.0",
"ethers": "^6.13.4",
"file-saver": "^2.0.5",
"hashconnect": "^0.1.10",
"jszip": "^3.10.1",
"multiformats": "^13.3.1",
"prismjs": "^1.29.0",
"vue": "^3.5.11",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@cypress/code-coverage": "^3.13.6",
"@rushstack/eslint-patch": "^1.10.4",
"@tsconfig/node18": "^18.2.4",
"@types/file-saver": "^2.0.7",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.9.0",
"@types/prismjs": "^1.26.5",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-vue": "^5.2.0",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/web-worker": "^2.1.5",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.6.0",
"axios-mock-adapter": "^2.1.0",
"cypress": "^13.16.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-vue": "^9.31.0",
"jsdom": "^25.0.1",
"npm-run-all": "^4.1.5",
"resize-observer-polyfill": "~1.5.1",
"sass": "^1.81.0",
"start-server-and-test": "^2.0.8",
"typescript": "~5.6.2",
"vite": "^5.4.11",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-require-transform": "^1.0.21",
"vitest": "^2.0.3",
"vue-tsc": "^2.1.10"
}
}