forked from EsunR/Blog-Index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "esunr-index-v3",
"version": "0.0.0",
"packageManager": "yarn@1.22.19",
"volta": {
"node": "18.17.0",
"yarn": "1.22.19"
},
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite",
"build": "vite-ssg build",
"serve": "vite preview",
"lint": "eslint --ext .js,.vue,.ts --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"prepare": "husky install",
"cz": "cz"
},
"license": "MIT",
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@unhead/vue": "^1.2.2",
"vue": "^3.3.4"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"commitizen": "^4.2.4",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^9.16.1",
"husky": "^7.0.4",
"lint-staged": ">=10",
"postcss": "^8.4.31",
"postcss-load-config": "^4.0.1",
"postcss-preset-env": "^9.2.0",
"prettier": "^2.4.1",
"sass": "^1.64.2",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vite-ssg": "^0.23.1"
},
"lint-staged": {
"src/**/*.{js,vue,ts}": "eslint --cache --fix",
"src/**/*": "prettier --write"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}