-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
{
"name": "vue-project",
"version": "0.0.0",
"private": true,
"scripts": {
"cz": "czg",
"dev": "vite",
"lint": "nano-staged",
"build": "vite build",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"postinstall": "npx husky install",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:deploy": "sh deploy.sh"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"@vueuse/core": "^10.4.0",
"axios": "^1.5.0",
"dayjs": "^1.11.9",
"element-plus": "^2.3.12",
"js-cookie": "^3.0.5",
"lodash-es": "^4.17.21",
"native-lodash": "^2.1.7",
"nprogress": "^0.2.0",
"pinia": "^2.1.6",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@offbeat-ui/eslint-config": "^1.1.0",
"@rushstack/eslint-patch": "^1.3.3",
"@types/js-cookie": "^3.0.3",
"@types/lodash-es": "^4.17.8",
"@types/node": "^18.17.12",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^4.3.3",
"@vue/tsconfig": "^0.1.3",
"cz-git": "^1.7.1",
"eslint": "^8.48.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"sass": "^1.66.1",
"typescript": "^5.2.2",
"unocss": "^0.49.8",
"unplugin-auto-import": "^0.14.4",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.4.9",
"vite-plugin-svg-icons": "^2.0.1",
"vitepress": "1.0.0-beta.3",
"vue-tsc": "^1.8.8"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"nano-staged": {
"*.md": "prettier --write",
"*.{js,ts,vue,scss,css}": "prettier --write",
"*.{js,ts,vue}": "eslint --fix"
}
}