-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
100 lines (100 loc) · 3.25 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "koi-ui",
"private": true,
"version": "1.0.0",
"type": "module",
"author": {
"name": "YU",
"email": "[email protected]",
"url": "https://gitee.com/BigCatHome/koi-ui"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"build:test": "vue-tsc && vite build --mode test",
"build:prod": "vue-tsc && vite build --mode production",
"type:check": "vue-tsc --noEmit --skipLibCheck",
"preview": "npm run build:dev && vite preview",
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
"fix": "eslint src --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged",
"release": "standard-version",
"commit": "git add -A && czg && git push",
"commitlint": "commitlint --config commitlint.config.cjs -e -V"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vueuse/core": "^10.11.0",
"animate.css": "^4.1.1",
"axios": "^1.7.3",
"crypto-js": "^4.2.0",
"default-passive-events": "^2.0.0",
"driver.js": "^1.3.1",
"echarts": "^5.5.1",
"element-plus": "^2.7.8",
"js-cookie": "^3.0.5",
"mitt": "^3.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.2.0",
"pinia-plugin-persistedstate": "^3.2.1",
"sortablejs": "^1.15.2",
"vue": "^3.4.35",
"vue-router": "^4.4.2",
"vue3-count-to": "^1.1.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/crypto-js": "^4.2.2",
"@types/nprogress": "^0.2.3",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@unocss/reset": "^0.61.9",
"@vitejs/plugin-vue": "^5.1.2",
"autoprefixer": "^10.4.20",
"cz-git": "^1.9.4",
"czg": "^1.9.4",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.27.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"mockjs": "^1.1.0",
"postcss": "^8.4.40",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"stylelint": "^16.8.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.5.0",
"typescript": "^5.5.4",
"unocss": "^0.61.9",
"vite": "^5.3.5",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-mock": "^3.0.2",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-i18n": "^9.13.1",
"vue-tsc": "^2.0.29"
},
"commitizen": {
"path": "node_modules/cz-git"
}
}