PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.8
Booking for Appointments and Events Calendar – Amelia v2.4.8
2.4.8 2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / v3 / package.json
ameliabooking / v3 Last commit date
public 1 day ago src 1 day ago package-lock.json 1 month ago package.json 1 week ago
package.json
59 lines
1 {
2 "name": "frontend",
3 "version": "0.0.0",
4 "scripts": {
5 "dev": "vite --port 3000 --strictPort",
6 "build": "vite build",
7 "serve": "vite preview",
8 "lint": "oxlint .",
9 "lint:fix": "oxlint --fix .",
10 "format": "oxfmt src",
11 "format:check": "oxfmt --check src"
12 },
13 "dependencies": {
14 "@fullcalendar/core": "^6.1.17",
15 "@fullcalendar/daygrid": "^6.1.17",
16 "@fullcalendar/interaction": "^6.1.17",
17 "@fullcalendar/vue3": "^6.1.17",
18 "@vueuse/core": "^7.6.0",
19 "axios": "^0.25.0",
20 "dayjs": "^1.11.13",
21 "deepmerge": "^4.2.2",
22 "element-plus": "^2.9.7",
23 "jsqr": "^1.4.0",
24 "libphonenumber-js": "^1.9.49",
25 "luxon": "^2.4.0",
26 "maz-ui": "4.9.0",
27 "moment": "2.30.1",
28 "quill": "^2.0.3",
29 "v-money3": "^3.24.1",
30 "vue": "^3.5.32",
31 "vue-authenticate": "^1.5.0",
32 "vue-google-autocomplete": "^1.1.4",
33 "vue-gtag": "^2.0.1",
34 "vue-recaptcha": "^2.0.2",
35 "vue3-cookies": "^1.0.6",
36 "vuedraggable": "^4.1.0",
37 "vuex": "^4.0.2"
38 },
39 "devDependencies": {
40 "@vitejs/plugin-vue": "^4.6.2",
41 "lint-staged": "^16.0.0",
42 "oxfmt": "^0.41.0",
43 "oxlint": "^1.56.0",
44 "sass": "^1.49.7",
45 "unplugin-auto-import": "^21.0.0",
46 "unplugin-element-plus": "^0.2.0",
47 "unplugin-vue-components": "^31.1.0",
48 "vite": "^4.5.14",
49 "vite-plugin-inspect": "^0.7.42"
50 },
51 "lint-staged": {
52 "*.{css,scss,md,json}": "oxfmt --no-error-on-unmatched-pattern",
53 "*.{js,vue,ts}": [
54 "oxfmt --no-error-on-unmatched-pattern",
55 "oxlint --fix"
56 ]
57 }
58 }
59