PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.36
Booking for Appointments and Events Calendar – Amelia v1.2.36
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 / package.json
ameliabooking Last commit date
Licensing 2 years ago assets 7 months ago extensions 10 months ago languages 7 months ago public 7 months ago src 7 months ago v3 7 months ago vendor 7 months ago view 10 months ago .babelrc 6 years ago Readme_documentation.pdf 3 years ago ameliabooking.php 7 months ago package-lock.json 7 months ago package.json 7 months ago readme.txt 7 months ago webpack.config.js 6 years ago webpack.mix.js 7 months ago
package.json
81 lines
1 {
2 "name": "ameliabooking",
3 "private": true,
4 "version": "1.0.0",
5 "description": "A comprehensive booking and CRM system for small and mid-sized businesses.",
6 "author": "TMS",
7 "scripts": {
8 "dev": "NODE_ENV=development webpack --progress --hide-modules --config=webpack.config.js",
9 "dev-cross": "cross-env NODE_ENV=development webpack --progress --hide-modules --config=webpack.config.js",
10 "hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=webpack.config.js",
11 "inst": "npm install && rm -fr node_modules/fullcalendar-scheduler/node_modules",
12 "lint": "eslint --ext .js,.vue assets",
13 "lint:fix": "npm run lint -- --fix",
14 "production": "NODE_ENV=production webpack --progress --hide-modules --config=webpack.config.js",
15 "watch": "NODE_ENV=development webpack --watch --progress --hide-modules --config=webpack.config.js",
16 "watch-cross": "cross-env NODE_ENV=development webpack --watch --progress --hide-modules --config=webpack.config.js"
17 },
18 "dependencies": {
19 "@fullcalendar/daygrid": "^5.5.0",
20 "@fullcalendar/interaction": "^5.5.0",
21 "@fullcalendar/list": "^5.5.0",
22 "@fullcalendar/vue": "^5.5.0",
23 "axios": "^0.18.0",
24 "chart.js": "^2.9.3",
25 "check-node-version": "^3.3.0",
26 "deepmerge": "^4.2.2",
27 "element-ui": "^2.15.6",
28 "eslint-plugin-vue": "^5.2.2",
29 "form-object": "^1.7.1",
30 "fullcalendar-scheduler": "^1.9.4",
31 "inline-svg": "^2.2.3",
32 "jsqr": "^1.4.0",
33 "moment": "^2.26.0",
34 "papaparse": "^5.3.1",
35 "psl": "^1.1.31",
36 "setimmediate": "^1.0.5",
37 "v-calendar": "^0.9.7",
38 "v-money": "^0.8.1",
39 "vue": "^2.6.11",
40 "vue-chartjs": "^3.4.2",
41 "vue-cookies": "^1.5.13",
42 "vue-facebook-pixel": "^1.2.1",
43 "vue-full-calendar": "^2.7.0",
44 "vue-google-autocomplete": "^1.1.0",
45 "vue-gtag": "^1.16.1",
46 "vue-inline-svg": "^1.3.1",
47 "vue-momentjs": "^0.1.2",
48 "vue-pure-lightbox": "^2.1.8",
49 "vue-quill-editor": "^3.0.6",
50 "vue-recaptcha": "^1.3.0",
51 "vue-router": "^3.0.6",
52 "vue-session": "^1.0.0",
53 "vue-template-compiler": "^2.6.11",
54 "vue-the-mask": "^0.11.1",
55 "vuedraggable": "^2.20.0",
56 "vuex": "^3.1.3"
57 },
58 "devDependencies": {
59 "babel-core": "^6.17.0",
60 "babel-eslint": "^8.2.6",
61 "babel-loader": "^6.4.1",
62 "babel-plugin-syntax-dynamic-import": "^6.18.0",
63 "babel-plugin-transform-runtime": "^6.15.0",
64 "babel-preset-stage-2": "^6.24.1",
65 "cross-env": "^5.2.0",
66 "eslint": "^4.19.1",
67 "eslint-config-standard": "^11.0.0",
68 "eslint-plugin-html": "^3.0.0",
69 "eslint-plugin-import": "^2.17.2",
70 "eslint-plugin-node": "^6.0.1",
71 "eslint-plugin-promise": "^3.8.0",
72 "eslint-plugin-standard": "^3.1.0",
73 "file-loader": "^1.1.11",
74 "idempotent-babel-polyfill": "^6.26.0",
75 "laravel-mix": "^1.7.2",
76 "less": "^2.7.3",
77 "less-loader": "^4.0.6",
78 "webpack": "^3.12.0"
79 }
80 }
81