-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.82 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
63
64
65
66
67
{
"name": "career-seekers-front",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx,.vue --fix",
"type-check": "vue-tsc --noEmit"
},
"dependencies": {
"@types/node": "^24.3.3",
"@vue/eslint-config-typescript": "^14.6.0",
"axios": "^1.11.0",
"jwt-decode": "^4.0.0",
"pinia": "^3.0.3",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primevue": "^3.50.0",
"quill": "^2.0.3",
"sockjs-client": "^1.6.1",
"uuid": "^12.0.0",
"vue": "^3.5.21",
"vue-eslint-parser": "^10.2.0",
"vue-pdf-embed": "^2.1.3",
"vue-router": "^4.5.1",
"webstomp-client": "^1.2.6"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/css": "^0.11.0",
"@eslint/js": "^9.35.0",
"@eslint/json": "^0.13.2",
"@eslint/markdown": "^7.2.0",
"@types/sockjs-client": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitejs/plugin-vue": "^5.2.4",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.4.0",
"gh-pages": "^6.3.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jiti": "^2.5.1",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"typescript": "~5.7.2",
"typescript-eslint": "^8.43.0",
"vite": "^6.3.6",
"vue-tsc": "^2.2.12"
},
"lint-staged": {
"*.{js,vue,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
}
}