-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.69 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
{
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"axios": "^1.7.2",
"commitizen": "^4.3.0",
"cz-git": "^1.9.1",
"eslint": "^9.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"husky": "^9.0.11",
"less": "^4.2.0",
"lint-staged": "^15.2.2",
"luxon": "^3.4.4",
"markdown-it-anchor": "^9.0.1",
"prettier": "^3.2.5",
"sass": "^1.77.2",
"stylelint": "^16.5.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"vite": "^5.2.11",
"vite-plugin-eslint": "^1.8.1",
"vitepress": "^1.2.0"
},
"scripts": {
"prepare": "husky",
"lint-staged": "lint-staged",
"commitlint": "commitlint -e -V",
"stylelint:fix": "stylelint 'docs/**/*.{html,vue,css,scss}' --fix",
"stylelint:out": "stylelint 'docs/**/*.{html,vue,css,scss}' -o .stylelint-output.txt -f string",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"cm": "git-cz",
"cm:ci" : "git sts && git add . && git sts && git-cz && git push origin HEAD -f"
},
"dependencies": {
"@giscus/vue": "^3.0.0",
"consola": "^3.2.3",
"gitalk": "^1.8.0",
"vue": "^3.4.27"
},
"lint-staged": {
"docs/**/*.{jsx,txs,ts,js,vue,json,css,,less,sass,md}": [
"prettier --check",
"prettier --write"
]
}
}