forked from ahm23/odin-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.5 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
{
"name": "odin-web",
"version": "0.1.0",
"private": true,
"gitHooks": {
"pre-commit": "npm run lint:scripts"
},
"scripts": {
"serve": "vue-cli-service serve",
"serve:prod": "vue-cli-service serve --mode production",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lint:scripts": "eslint \"{src,config}/**/*.{js,vue,ts}\" --cache --fix --max-warnings=0"
},
"dependencies": {
"@apollo/client": "^3.6.8",
"@bandprotocol/bandchain.js": "==2.1.4",
"@cosmjs/crypto": "^0.28.11",
"@cosmjs/encoding": "^0.28.11",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.28.11",
"@cosmjs/stargate": "^0.28.11",
"@cosmjs/tendermint-rpc": "^0.28.11",
"@highlightjs/vue-plugin": "^2.1.0",
"@invisiburu/vue-picker": "^2.1.0",
"@kyvg/vue3-notification": "^2.3.4",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.isobject": "^3.0.7",
"@types/lodash.mapvalues": "^4.6.7",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@vue/apollo-composable": "^4.0.0-alpha.17",
"@vue/apollo-option": "^4.0.0-alpha.17",
"bignumber.js": "^9.0.1",
"buffer": "^6.0.3",
"chart.js": "^3.5.1",
"cosmjs-types": "^0.4.1",
"date-fns": "^2.21.3",
"detect-browser": "^5.3.0",
"eslint-plugin-prettier": "^4.2.1",
"firebase-tools": "^9.12.1",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6",
"highlight.js": "^11.5.0",
"long": "^4.0.0",
"mitt": "^3.0.0",
"protobufjs": "^6.10.2",
"qrcode.vue": "^3.3.3",
"vue": "^3.2.29",
"vue-chart-3": "^0.5.8",
"vue-router": "^4.0.0-0",
"vue-skeletor": "^1.0.6",
"vue3-markdown-it": "^1.0.10",
"web3": "^1.5.1",
"yarn": "^1.22.19"
},
"devDependencies": {
"@keplr-wallet/types": "^0.9.9",
"@mapbox/stylelint-processor-arbitrary-tags": "^0.4.0",
"@typescript-eslint/parser": "^5.30.7",
"@vue/cli-plugin-babel": "^5.0.1",
"@vue/cli-plugin-eslint": "^5.0.1",
"@vue/cli-plugin-router": "^5.0.1",
"@vue/cli-plugin-typescript": "^5.0.1",
"@vue/cli-service": "^5.0.1",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^8.2.0",
"prettier": "^2.4.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"stylelint": "^14.9.1",
"stylelint-declaration-strict-value": "^1.9.0",
"stylelint-scss": "^4.3.0",
"typescript": "^4.7.4"
}
}