-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.55 KB
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
{
"name": "shorten-url",
"private": true,
"version": "0.0.0",
"type": "module",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx,js,vue}": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"dev": "vite --mode development",
"dev:prod": "vite --mode production",
"build": "vue-tsc && vite build",
"build:prod": "vite build --mode production",
"preview": "vite preview",
"prepare": "husky install",
"lint": "eslint src",
"test": "eslint"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"axios": "^1.5.1",
"element-plus": "^2.3.14",
"vue": "^3.3.4",
"vue-loading-overlay": "^6.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitejs/plugin-vue": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.51.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"pre-commit": "^1.2.2",
"prettier": "^3.0.3",
"sass": "^1.69.2",
"typescript": "^5.0.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-icons": "^0.17.0",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.4.5",
"vue-tsc": "^1.8.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}