-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2.42 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
{
"scripts": {
"dev": "vite --mode development",
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
"prepare": "husky install",
"lint:eslint": "eslint --ignore-path ./config/eslint/.eslintignore --config ./config/eslint/.eslintrc.js --cache --max-warnings 0 {src,mock}/**/*.{vue,ts,tsx} --fix",
"lint:prettier": "prettier --ignore-path ./config/prettier/.prettierignore --config ./config/prettier/prettier.config.js --write **/*.{js,json,tsx,css,less,scss,vue,html,md}",
"lint:stylelint": "stylelint --ignore-path ./config/stylelint/.stylelintignore --config ./config/stylelint/.stylelint.config.js {src}**/*.{css,less,scss,vue,html} --fix",
"lint:lint-staged": "lint-staged -c ./config/lint-staged/lint-staged.config.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"axios": "^1.4.0",
"element-plus": "^2.3.8",
"nprogress": "^0.2.0",
"pinia": "^2.1.4",
"pinia-plugin-persistedstate": "^3.1.0",
"vitepress": "1.0.0-beta.6",
"vue": "^3.3.4",
"vue-eslint-parser": "^9.3.1",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@eslint/create-config": "^0.4.5",
"@types/node": "^20.4.2",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.15.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^3.0.0",
"sass": "^1.64.0",
"stylelint": "^15.10.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.0.1",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vue-tsc": "^1.8.5"
}
}