-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.19 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.19 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "v3-ts-cms",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint src",
"fix": "eslint src --fix",
"format": "prettier --write \"./**/*.{html,vue,js,ts,json,md}\"",
"lint:style": "stylelint src/**/*.{css,scss,vue} --cache --fix",
"commitlint": "commitlint --config commitlint.config.cjs -e -V",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"commit": "git add . && git cz"
},
"dependencies": {
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^5.1.12",
"axios": "^1.6.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.0",
"qrcodejs2-fix": "^0.0.1",
"vue": "^3.3.4",
"vue-router": "^4.2.5",
"@vueuse/core": "^10.5.0"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@element-plus/icons-vue": "^2.1.0",
"@iconify-json/ep": "^1.1.12",
"@iconify/json": "^2.2.137",
"@iconify/vue": "^4.1.1",
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.18.5",
"@unocss/reset": "^0.57.2",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.16",
"commitizen": "^4.3.0",
"commitlint": "^18.2.0",
"cssnano": "^6.0.1",
"dayjs": "^1.11.10",
"echarts": "^5.4.3",
"element-plus": "^2.4.1",
"eslint": "^8.49.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"normalize.css": "^8.0.1",
"npm-run-all2": "^6.1.1",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"postcss-import": "^15.1.0",
"postcss-load-config": "^4.0.1",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.3.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.0.3",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"stylelint": "^15.11.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.3.1",
"sugarss": "^4.0.1",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.0",
"unocss": "^0.57.2",
"unplugin-auto-import": "^0.16.7",
"unplugin-icons": "^0.17.3",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.4.11",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-style-import": "^2.0.0",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-i18n": "^9.6.4",
"vue-tsc": "^1.8.19"
},
"lint-staged": {
"*.{js,vue,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,scss,md}": [
"prettier --write"
]
}
}