add dependencies to documentation

This commit is contained in:
isUnknown 2024-09-17 18:21:37 +02:00
parent 463428f14c
commit 742b02cf93

View file

@ -1,5 +1,26 @@
The project is based on [Kirby CMS](https://getkirby.com), [Vite](https://vitejs.dev/) + [Vue](https://fr.vuejs.org/) and [Pinia](https://pinia.vuejs.org/) as a state manager.
Vue is used following the composition API approach.
The project is based on
- [Kirby CMS](https://getkirby.com) as the content management system
- [Vite](https://vitejs.dev/) as the build tool
- [Vue](https://fr.vuejs.org/) as the JavaScript framework
- [Vue Router](https://router.vuejs.org) for handling routing
[Pinia](https://pinia.vuejs.org/) as a state management library.
Vue is used with the composition API approach.
The project also includes some helper libraries that are available throughout the /src directory. These libraries include:
- [dayjs](https://day.js.org/): a lightweight JavaScript date library for parsing, manipulating, and formatting dates. To use dayjs in your code, you can import it like this:
```javascript
import dayjs from "dayjs";
```
- [slugify](https://www.npmjs.com/package/slugify): a library for converting strings into URL-friendly slugs. To use slugify in your code, you can import it like this:
```javascript
import slugify from "slugify";
```
# Development