-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.54 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.54 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
{
"name": "web-basic-doc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "pnpm run --filter play dev",
"build": "pnpm run --filter ./packages/components build",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:eslint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"lint:prettier": "prettier --write \"./**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:style": "stylelint \"./**/*.{css,scss,vue,html}\" --fix",
"lint:lint-staged": "lint-staged",
"prepare": "husky install"
},
"author": "zml",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vuepress/client": "2.0.0-beta.53",
"@vuepress/plugin-search": "2.0.0-beta.53",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.4",
"prismjs": "^1.29.0",
"stylelint": "^15.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^10.0.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-order": "^6.0.2",
"stylelint-scss": "^4.4.0",
"typescript": "^4.9.5",
"vite": "^3.2.3",
"vite-plugin-dts": "^3.6.4",
"vue": "^3.3.10",
"vuepress": "2.0.0-beta.53"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.10",
"@web-basic-doc/components": "workspace:^1.0.71",
"@web-basic-doc/directives": "workspace:^0.0.1",
"@web-basic-doc/theme-chalk": "workspace:^1.0.0",
"@web-basic-doc/utils": "workspace:^1.0.0",
"echarts": "^5.4.1",
"element-plus": "^2.4.3",
"view-ui-plus": "^1.3.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,less,styl,html}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}