generated from ywanzhou/vue3-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.22 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
84
{
"name": "vue3-template",
"private": true,
"version": "0.0.3",
"description": "a template vue3 repository",
"author": {
"name": "ywanzhou",
"email": "[email protected]",
"url": "https://juejin.cn/user/3350967174838701"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"dev:open": "vite --open",
"dev:host": "vite --host",
"dev:host:open": "vite --host --open",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "eslint src --fix --ext .js,.ts,.jsx,.tsx,.vue && prettier --write --ignore-unknown",
"commit": "cz"
},
"lint-staged": {
"*.{vue,js,ts,tsx,jsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"animate.css": "^4.1.1",
"axios": "^0.26.0",
"echarts": "^5.3.3",
"element-plus": "^2.2.2",
"gsap": "^3.9.1",
"lodash": "^4.17.21",
"pinia": "^2.0.11",
"vue": "^3.2.25",
"vue-router": "^4.0.13"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/echarts": "^4.9.16",
"@types/lodash": "^4.14.184",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.10.0",
"eslint-define-config": "^1.2.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.4",
"mockjs": "^1.1.0",
"plop": "^3.0.5",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"rollup": "^2.78.1",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.4",
"unplugin-auto-import": "^0.6.1",
"unplugin-vue-components": "^0.17.21",
"vite": "^2.8.0",
"vite-plugin-mock": "^2.9.6",
"vue-tsc": "^0.29.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">= 16.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ywanzhou/vue3-template"
}
}