-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.62 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.62 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
{
"name": "ibc-explorer",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"prod": "vite --mode production",
"vue:tsc": "vue-tsc --noEmit",
"build:dev": "vue-tsc --noEmit && vite build --mode development",
"build:prod": "vue-tsc --noEmit && vite build --mode production",
"preview": "vite preview",
"eslint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src --max-warnings 0",
"prettier": "prettier . --write",
"commit": "git-cz",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,vue}": [
"npm run eslint",
"npm run prettier"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@vueuse/core": "^9.5.0",
"ant-design-vue": "^3.2.7",
"axios": "^0.27.2",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.2",
"clipboard": "^2.0.11",
"dayjs": "^1.11.3",
"echarts": "^5.4.0",
"json-bigint": "^1.0.0",
"lodash-es": "^4.17.21",
"move-decimal-point": "^0.0.4",
"nprogress": "^0.2.0",
"pinia": "^2.0.14",
"qrcodejs2-fix": "^0.0.1",
"tailwindcss": "^3.1.3",
"vue": "^3.2.25",
"vue-router": "^4.0.16"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@tailwindcss/line-clamp": "^0.4.0",
"@types/json-bigint": "^1.0.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.43",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"autoprefixer": "^10.4.7",
"commitizen": "^4.2.5",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.3.0",
"husky": "^8.0.1",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.9.0",
"typescript": "4.7.3",
"unplugin-auto-import": "^0.10.1",
"unplugin-vue-components": "^0.19.6",
"vite": "^2.9.9",
"vite-plugin-compression": "^0.5.1",
"vue-tsc": "^0.34.7"
}
}