-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.74 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
{
"name": "cv-wrapper",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "My Vue based wrapper application for serving the CV content dynamically and providing additional features",
"scripts": {
"dev": "vite",
"build": "pnpm run pre-build && vue-tsc --build --force && vite build",
"pre-build": "node scripts/generateSupportedTypes.js && pwa-assets-generator",
"lint": "concurrently --pad-prefix --kill-others-on-fail -n prettier,eslint,type-check 'prettier . --check' 'eslint' 'vue-tsc --noEmit'",
"fix": "prettier . --write && eslint --fix"
},
"dependencies": {
"@primevue/core": "4.3.9",
"@primevue/themes": "4.3.9",
"@tailwindcss/vite": "4.1.18",
"@vueuse/core": "13.6.0",
"flag-icons": "7.5.0",
"html-include-element": "0.3.0",
"pinia": "3.0.4",
"primeicons": "7.0.0",
"primevue": "4.3.9",
"tailwindcss": "4.1.18",
"tailwindcss-primeui": "0.6.1",
"ua-parser-js": "2.0.4",
"vue": "3.5.33",
"vue-i18n": "11.1.12"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "4.1.1",
"@intlify/unplugin-vue-i18n": "6.0.8",
"@primevue/auto-import-resolver": "4.3.9",
"@tsconfig/node-lts": "22.0.4",
"@types/node": "22.17.2",
"@vite-pwa/assets-generator": "1.0.2",
"@vitejs/plugin-vue": "6.0.6",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/eslint-config-typescript": "14.6.0",
"@vue/tsconfig": "0.7.0",
"axe-core": "4.10.3",
"eslint-plugin-vue": "10.4.0",
"eslint-plugin-vuejs-accessibility": "2.5.0",
"typescript": "5.8.3",
"unplugin-vue-components": "28.8.0",
"user-agent-data-types": "0.4.2",
"vite": "7.0.8",
"vite-plugin-pwa": "1.0.3",
"vue-axe": "3.1.2",
"vue-tsc": "3.0.10"
}
}