-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.82 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
{
"name": "uniquestudiocandidate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host=0.0.0.0 --config ./config/vite.config.dev.ts",
"build": "vue-tsc && vite build --config ./config/vite.config.base.ts",
"preview": "vite preview",
"lint-staged": "npx lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --write",
"eslint --fix"
],
"*.{less,css}": [
"stylelint --fix",
"prettier --write"
]
},
"dependencies": {
"@arco-design/web-vue": "^2.55.1",
"axios": "^1.4.0",
"dayjs": "^1.11.11",
"echarts": "^5.5.0",
"http-proxy-middleware": "^2.0.6",
"lodash": "^4.17.21",
"mitt": "^3.0.1",
"pinia": "^2.1.4",
"qs": "^6.11.2",
"vue": "^3.4.27",
"vue-i18n": "^9.2.2",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@arco-plugins/vite-vue": "^1.4.5",
"@types/lodash": "^4.14.195",
"@types/mockjs": "^1.0.7",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^15.2.10",
"postcss": "^8.4.26",
"prettier": "3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vite-svg-loader": "^4.0.0",
"vue-tsc": "^1.8.4"
}
}