public
1 year ago
src
1 year ago
.eslintrc.js
4 years ago
.prettierrc.js
4 years ago
index.html
4 years ago
package-lock.json
1 year ago
package.json
1 year ago
vite.config.js
1 year ago
package.json
53 lines
| 1 | { |
| 2 | "name": "frontend", |
| 3 | "version": "0.0.0", |
| 4 | "scripts": { |
| 5 | "cy:run": "cypress run --spec './cypress/e2e'", |
| 6 | "cypress:open": "cypress open", |
| 7 | "dev": "vite", |
| 8 | "build": "vite build", |
| 9 | "serve": "vite preview", |
| 10 | "lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src", |
| 11 | "format": "prettier . --write" |
| 12 | }, |
| 13 | "dependencies": { |
| 14 | "@fullcalendar/core": "^6.1.14", |
| 15 | "@fullcalendar/daygrid": "^6.1.14", |
| 16 | "@fullcalendar/interaction": "^6.1.14", |
| 17 | "@fullcalendar/vue3": "^6.1.14", |
| 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.0.1", |
| 23 | "libphonenumber-js": "^1.9.49", |
| 24 | "luxon": "^2.4.0", |
| 25 | "maz-ui": "^3.0.0", |
| 26 | "moment": "^2.29.1", |
| 27 | "quill": "^2.0.3", |
| 28 | "v-money3": "^3.24.1", |
| 29 | "vite-plugin-dynamic-publicpath": "^1.1.2", |
| 30 | "vue": "^3.2.30", |
| 31 | "vue-google-autocomplete": "^1.1.4", |
| 32 | "vue-gtag": "^2.0.1", |
| 33 | "vue-recaptcha": "^2.0.2", |
| 34 | "vue3-cookies": "^1.0.6", |
| 35 | "vuedraggable": "^4.1.0", |
| 36 | "vuex": "^4.0.2" |
| 37 | }, |
| 38 | "devDependencies": { |
| 39 | "@vitejs/plugin-vue": "^2.1.0", |
| 40 | "cypress": "^10.8.0", |
| 41 | "eslint": "^8.8.0", |
| 42 | "eslint-config-prettier": "^8.3.0", |
| 43 | "eslint-plugin-vue": "^8.4.1", |
| 44 | "prettier": "^2.5.1", |
| 45 | "sass": "^1.49.7", |
| 46 | "unplugin-auto-import": "^0.6.0", |
| 47 | "unplugin-element-plus": "^0.2.0", |
| 48 | "unplugin-vue-components": "^0.17.18", |
| 49 | "vite": "^2.7.13", |
| 50 | "vite-plugin-inspect": "^0.3.13" |
| 51 | } |
| 52 | } |
| 53 |