-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.95 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.95 KB
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
{
"name": "blockchain-explorer",
"description": "blockchain explorer",
"license": "CC-BY-NC-SA-4.0",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"start": "node .",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"docker-build": "docker build -t ghcr.io/ever-guild/blockchain-explorer .",
"docker-push": "docker push ghcr.io/ever-guild/blockchain-explorer",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^6.0.1",
"@noble/ed25519": "^1.6.1",
"@symfony/webpack-encore": "^1.8.1",
"@types/aes-js": "^3.1.1",
"@types/crypto-js": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vueuse/core": "^8.9.4",
"adnl": "^0.0.9",
"aes-js": "^3.1.2",
"autoprefixer": "^10.4.7",
"axios": "^0.24.0",
"axios-retry": "^3.2.4",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"crypto-hash": "^2.0.1",
"crypto-js": "^4.1.1",
"curve25519-js": "^0.0.4",
"dataloader": "^2.1.0",
"dexie": "^3.2.2",
"dotenv": "^8.2.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.2.0",
"file-loader": "^6.2.0",
"fp-ts": "^2.12.1",
"hash.js": "^1.1.7",
"html-webpack-plugin": "^5.5.0",
"io-ts": "^2.2.16",
"io-ts-reporters": "^2.0.1",
"isomorphic-webcrypto": "^2.3.8",
"isomorphic-ws": "^5.0.0",
"noble-ed25519": "^1.2.6",
"pinia": "^2.0.17",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"qrcode.vue": "^3.3.3",
"randombytes": "^2.1.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-polyfill-node": "^0.10.1",
"rollup-plugin-visualizer": "^5.7.0",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"symbol.inspect": "^1.0.1",
"tailwindcss": "^3.1.6",
"timeago.js": "^4.0.2",
"ton": "^12.2.8",
"ton-crypto": "^3.2.0",
"ton-lite-client": "npm:@truecarry/ton-lite-client@^1.6.1",
"ton-tl": "^0.2.2",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tweetnacl": "^1.0.3",
"typescript": "^4.7.4",
"vite": "^3.0.4",
"vite-plugin-chunk-split": "^0.3.0",
"vite-svg-loader": "^3.4.0",
"vue": "^3.2.37",
"vue-i18n": "^9.2.2",
"vue-loader": "^17.0.0",
"vue-mugen-scroll": "^0.2.6",
"vue-router": "^4.1.3",
"vue-template-compiler": "^2.7.4",
"vue-toastification": "^2.0.0-rc.5",
"vuex": "^4.1.0",
"websocket": "^1.0.34",
"ws": "^8.8.0"
},
"engines": {
"node": ">=16.0.0"
}
}