-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.72 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
{
"name": "vue-element-plus-admin",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "husky install",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"prettier": "prettier --write ./**/*.{vue,ts,tsx,js,jsx,css,less,scss,json,md}",
"lint-staged": "lint-staged --allow-empty",
"commit": "git add . && git cz",
"commitlint": "commitlint --config commitlint.config.js -e -V",
"lslint": "pnpx @ls-lint/ls-lint",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@element-plus/icons-vue": "^1.0.0",
"@vueuse/core": "^7.7.0",
"@vueuse/integrations": "^7.7.0",
"element-plus": "^2.0.3",
"lodash-es": "^4.17.21",
"vue": "^3.2.31",
"vue-router": "^4.0.12",
"vuex": "^4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@ls-lint/ls-lint": "^1.11.0",
"@tailwindcss/typography": "^0.5.2",
"@types/lodash-es": "^4.17.6",
"@types/mockjs": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vitejs/plugin-vue": "^2.2.2",
"@vitejs/plugin-vue-jsx": "^1.3.7",
"@vue/compiler-sfc": "^3.2.31",
"autoprefixer": "^10.4.2",
"axios": "^0.26.0",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"postcss": "^8.4.7",
"postcss-html": "^1.3.0",
"postcss-import": "^14.0.2",
"postcss-nesting": "^10.1.2",
"prettier": "^2.5.1",
"sass": "^1.49.9",
"stylelint": "^14.5.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-config-recommended-vue": "^1.3.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-scss": "^4.1.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5",
"unplugin-auto-import": "^0.6.1",
"unplugin-vue-components": "^0.17.21",
"vite": "^2.8.4",
"vue-tsc": "^0.32.0"
},
"lint-staged": {
"*.{js,vue,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,scss,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}