-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.25 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.25 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "velora",
"version": "1.0.0",
"private": "true",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . -c .eslintrc.cjs --fix --ext .ts,.js,.vue,.tsx,.jsx",
"build:icons": "tsx src/plugins/iconify/build-icons.ts",
"postinstall": "npm run build:icons"
},
"dependencies": {
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/list": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@fullcalendar/vue3": "^6.1.15",
"@mdi/font": "7.4.47",
"@tiptap/extension-text-align": "^2.10.3",
"@tiptap/starter-kit": "^2.10.3",
"@tiptap/vue-3": "^2.10.3",
"@types/leaflet": "^1.9.14",
"@types/webfontloader": "^1.6.38",
"@videojs-player/vue": "^1.0.0",
"@vuepic/vue-datepicker": "^10.0.0",
"@vueup/vue-quill": "^1.2.0",
"@vueuse/core": "^12.0.0",
"@vueuse/integrations": "^12.0.0",
"@yeger/vue-masonry-wall": "^5.0.16",
"apexcharts": "4.1.0",
"axios": "^1.7.8",
"axios-mock-adapter": "^2.1.0",
"chart.js": "^4.4.6",
"cleave.js": "^1.6.0",
"leaflet": "^1.9.4",
"pinia": "^2.2.8",
"postcss-scss": "^4.0.9",
"prismjs": "^1.29.0",
"roboto-fontface": "^0.10.0",
"sass": "1.78.0",
"sortablejs": "^1.15.6",
"swiper": "^11.1.15",
"video.js": "^8.20.0",
"vue": "3.5.13",
"vue-chartjs": "^5.3.2",
"vue-i18n": "^10.0.5",
"vue-prism-component": "^2.0.0",
"vue-router": "4.5.0",
"vue3-apexcharts": "^1.8.0",
"vue3-perfect-scrollbar": "^1.6.1",
"vue3-toastify": "^0.2.5",
"vuetify": "^3.7.4",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@antfu/eslint-config-vue": "^0.43.1",
"@iconify-json/bx": "^1.2.1",
"@iconify-json/bxs": "^1.2.1",
"@iconify-json/fa": "^1.2.0",
"@iconify-json/mdi": "^1.2.1",
"@iconify/tools": "^4.0.7",
"@iconify/utils": "^2.1.33",
"@iconify/vue": "4.1.2",
"@stylistic/stylelint-config": "^2.0.0",
"@stylistic/stylelint-plugin": "^3.1.1",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-case-police": "^0.6.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-regex": "^1.10.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-vue": "^9.31.0",
"postcss-html": "^1.7.0",
"stylelint": "16.11.0",
"stylelint-config-idiomatic-order": "10.0.0",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-use-logical-spec": "5.0.1",
"tsx": "^4.19.2",
"typescript": "5.7.2",
"unplugin-auto-import": "^0.18.6",
"vite": "^6.0.1",
"vite-plugin-vue-devtools": "^7.6.7",
"vite-plugin-vuetify": "^2.0.4",
"vite-svg-loader": "^5.1.0",
"vue-tsc": "^2.1.10"
},
"resolutions": {
"postcss": "8",
"@types/video.js": "^7"
},
"overrides": {
"postcss": "^8",
"@types/video.js": "^7"
}
}