-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.6 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
{
"name": "cosmos-k-line",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix --ext .ts,.tsx,.vue",
"fix": "prettier --write .",
"preview": "vite preview"
},
"dependencies": {
"@chainapsis/cosmosjs": "^0.0.3-alpha.3",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.28.4",
"@cosmjs/stargate": "^0.28.4",
"@headlessui/vue": "^1.6.1",
"@vicons/ionicons5": "^0.12.0",
"@vueuse/core": "^8.2.6",
"@walletconnect/client": "^1.7.8",
"@walletconnect/qrcode-modal": "^1.7.8",
"axios": "^0.25.0",
"convert-bech32-address": "^1.0.4",
"dayjs": "^1.11.0",
"lightweight-charts": "^3.8.0",
"numeral": "^2.0.6",
"pinia": "^2.0.9",
"pinia-plugin-persist": "^0.0.92",
"vue": "^3.2.25",
"vue-i18n": "^9.1.9",
"vue-request": "^1.2.4",
"vue-router": "4"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@keplr-wallet/types": "^0.10.3",
"@tailwindcss/typography": "^0.5.2",
"@types/node": "^17.0.5",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.9.0",
"@vicons/fa": "^0.12.0",
"@vicons/fluent": "^0.12.0",
"@vitejs/plugin-vue": "^2.0.0",
"@vitejs/plugin-vue-jsx": "^1.3.3",
"autoprefixer": "^10.4.2",
"daisyui": "^2.13.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"http-proxy-middleware": "^2.0.4",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"lint-staged": "^12.3.7",
"naive-ui": "^2.28.0",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"rollup-plugin-polyfill-node": "^0.9.0",
"stylelint": "^14.6.1",
"stylelint-config-standard": "^25.0.0",
"tailwindcss": "^3.0.19",
"theme-change": "^2.0.2",
"typescript": "^4.4.4",
"unplugin-vue-components": "^0.18.0",
"vfonts": "^0.0.3",
"vite": "^2.7.2",
"vue-tsc": "^0.29.8",
"ws": "^8.5.0"
},
"lint-staged": {
"*.{vue,js,jsx,ts,tsx}": [
"npm run fix"
],
"*.{scss,css,less}": [
"stylelint --fix"
]
}
}