PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.7
Booking for Appointments and Events Calendar – Amelia v1.2.7
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 1 year ago extensions 1 year ago languages 1 year ago public 1 year ago src 1 year ago trunk 1 year ago v3 1 year ago vendor 1 year ago view 2 years ago .babelrc 6 years ago Readme_documentation.pdf 3 years ago ameliabooking.php 1 year ago package-lock.json 1 year ago package.json 4 years ago readme.txt 1 year ago webpack.config.js 6 years ago webpack.mix.js 1 year ago
package.json
80 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 "moment": "^2.26.0",
33 "papaparse": "^5.3.1",
34 "psl": "^1.1.31",
35 "setimmediate": "^1.0.5",
36 "v-calendar": "^0.9.7",
37 "v-money": "^0.8.1",
38 "vue": "^2.6.11",
39 "vue-chartjs": "^3.4.2",
40 "vue-cookies": "^1.5.13",
41 "vue-facebook-pixel": "^1.2.1",
42 "vue-full-calendar": "^2.7.0",
43 "vue-google-autocomplete": "^1.1.0",
44 "vue-gtag": "^1.16.1",
45 "vue-inline-svg": "^1.3.1",
46 "vue-momentjs": "^0.1.2",
47 "vue-pure-lightbox": "^2.1.8",
48 "vue-quill-editor": "^3.0.6",
49 "vue-recaptcha": "^1.3.0",
50 "vue-router": "^3.0.6",
51 "vue-session": "^1.0.0",
52 "vue-template-compiler": "^2.6.11",
53 "vue-the-mask": "^0.11.1",
54 "vuedraggable": "^2.20.0",
55 "vuex": "^3.1.3"
56 },
57 "devDependencies": {
58 "babel-core": "^6.17.0",
59 "babel-eslint": "^8.2.6",
60 "babel-loader": "^6.2.5",
61 "babel-plugin-syntax-dynamic-import": "^6.18.0",
62 "babel-plugin-transform-runtime": "^6.15.0",
63 "babel-preset-stage-2": "^6.24.1",
64 "cross-env": "^5.2.0",
65 "eslint": "^4.19.1",
66 "eslint-config-standard": "^11.0.0",
67 "eslint-plugin-html": "^3.0.0",
68 "eslint-plugin-import": "^2.17.2",
69 "eslint-plugin-node": "^6.0.1",
70 "eslint-plugin-promise": "^3.8.0",
71 "eslint-plugin-standard": "^3.1.0",
72 "file-loader": "^1.1.11",
73 "idempotent-babel-polyfill": "^6.26.0",
74 "laravel-mix": "^1.7.2",
75 "less": "^2.7.3",
76 "less-loader": "^4.0.6",
77 "webpack": "^3.12.0"
78 }
79 }
80