package.json
55 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 .", |
| 11 | "format:check": "oxfmt --check ." |
| 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 | "*.{js,vue,ts,css,scss,md,json}": "oxfmt --no-error-on-unmatched-pattern" |
| 53 | } |
| 54 | } |
| 55 |