-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "vue-ts-cms",
"version": "0.0.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src*/**/*.ts": [
"prettier --config .prettierrc.js --write",
"eslint",
"git add"
],
"src*/**/*.json": [
"prettier --config .prettierrc.js --write",
"eslint",
"git add"
]
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"commit": "npx cz",
"lint": "eslint --fix --ext .js --ext .jsx --ext .ts --ext .vue src/ ",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@element-plus/icons-vue": "^0.2.6",
"@vueuse/core": "^7.6.2",
"animate.css": "^4.1.1",
"axios": "^0.24.0",
"dayjs": "^1.10.7",
"echarts": "^5.3.0",
"element-plus": "^1.3.0-beta.5",
"less": "^4.1.2",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.0",
"vue": "^3.2.25",
"vue-router": "^4.0.12",
"vuex": "^4.0.2",
"vuex-module-decorators": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/nprogress": "^0.2.0",
"@types/progress": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vitejs/plugin-vue": "^2.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.3.0",
"husky": "^7.0.4",
"less-loader": "^10.2.0",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"typescript": "^4.4.4",
"unplugin-auto-import": "^0.5.11",
"unplugin-vue-components": "^0.17.11",
"vite": "^2.7.2",
"vue-tsc": "^0.29.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}