-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "mejob",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "lint-staged",
"lint:es": "eslint \"*.{js,vue}\" \"src/**/*.{js,vue}\"",
"lint:es:fix": "eslint \"*.{js,vue}\" \"src/**/*.{js,vue}\" --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"dependencies": {
"@heroicons/vue": "^2.0.18",
"jwt-decode": "^4.0.0",
"vue": "^3.5.12",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@vitejs/plugin-vue": "^4.2.3",
"autoprefixer": "^10.4.15",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.29.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"postcss": "^8.4.29",
"tailwindcss": "^3.3.3",
"vite": "^4.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}