-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.07 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
{
"name": "polaris-admin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --open",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"prettier:check": "prettier --check --ignore-unknown .",
"prettier:fix": "prettier --write --ignore-unknown .",
"prepare": "husky install",
"lint:eslint": "eslint \"src/**/*.{vue,ts,js}\" --fix",
"lint:stylelint": "stylelint \"**/*.{css,scss,vue,html}\" --fix",
"lint:lint-staged": "lint-staged"
},
"dependencies": {
"@vueuse/core": "^10.6.1",
"axios": "^1.7.2",
"dayjs": "^1.11.10",
"echarts": "^5.5.1",
"echarts-gl": "^2.0.9",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"scss": "^0.2.4",
"unplugin-vue-components": "^0.25.2",
"vue": "^3.3.4",
"vue-global-api": "^0.4.1",
"vue-i18n": "^9.7.1",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"@iconify/json": "^2.2.147",
"@types/nprogress": "^0.2.3",
"@types/vue-router": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vitejs/plugin-vue": "^4.4.0",
"autoprefixer": "^10.4.16",
"cspell": "^8.0.0",
"eslint": "^8.53.0",
"eslint-plugin-vue": "^9.18.1",
"git-format-staged": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"naive-ui": "^2.35.0",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.9",
"prettier": "3.1.0",
"sass": "^1.69.5",
"stylelint": "^15.11.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.7",
"unplugin-icons": "^0.17.4",
"vite": "^4.4.5",
"vue-tsc": "^1.8.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}