-
Notifications
You must be signed in to change notification settings - Fork 213
/
package.json
83 lines (83 loc) · 2.24 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"private": true,
"author": {
"name": "mjjh",
"email": "mjjhmjjh1234@gmail.com",
"url": "https://github.com/hncboy"
},
"repository": {
"url": "https://github.com/hncboy"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:github": "vite build --mode github",
"preview": "vite preview",
"commit": "git add . && cz-customizable",
"lint": "eslint --ext .js,.ts,.vue .",
"lint:fix": "eslint --fix --ext .js,.ts,.vue .",
"lint:staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@vueuse/core": "^8.9.4",
"axios": "^1.2.2",
"busuanzi.pure.js": "^1.0.3",
"crypto-js": "^4.1.1",
"lodash-es": "^4.17.21",
"md-editor-v3": "^2.9.0",
"mockjs": "^1.1.0",
"pinia": "^2.0.28",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@iconify/json": "^2.1.78",
"@iconify/vue": "^3.2.1",
"@types/crypto-js": "^4.1.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.0.4",
"@vitejs/plugin-vue": "^3.1.2",
"colord": "^2.9.2",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.1",
"dayjs": "^1.11.7",
"eslint": "^8.19.0",
"http-proxy-middleware": "^2.0.6",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"naive-ui": "^2.34.3",
"rollup-plugin-visualizer": "^5.8.2",
"sass": "^1.53.0",
"typescript": "^4.6.4",
"unocss": "0.46.5",
"unplugin-auto-import": "^0.9.3",
"unplugin-icons": "^0.14.7",
"unplugin-vue-components": "^0.21.1",
"unplugin-vue-define-options": "^0.6.2",
"vite": "^3.2.5",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-svg-icons": "^2.0.1",
"vue-tsc": "^0.38.9"
},
"eslintConfig": {
"extends": "@antfu"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --ext .js,.ts,.vue ."
]
}
}