1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| {
| "name": "globus-ilias-rest",
| "version": "0.1",
| "private": true,
| "author": "Alexander Löhr",
| "description": "REST API for ILIAS used by POPCORN",
| "main": "app.js",
| "scripts": {
| "start": "node app.js",
| "dev": "nodemon app.js",
| "dev-ui": "vite",
| "build": "vite build"
| },
| "dependencies": {
| "@fastify/compress": "^8.0.1",
| "@fastify/static": "^8.2.0",
| "@vueuse/core": "^13.3.0",
| "@vueuse/router": "^13.3.0",
| "chai": "^5.2.0",
| "dayjs": "^1.11.13",
| "dotenv": "^16.5.0",
| "fastify": "^5.3.3",
| "flexsearch": "^0.8.205",
| "lodash": "^4.17.21",
| "mocha": "^11.6.0",
| "mysql2": "^3.14.1",
| "nconf": "^0.13.0",
| "nodemon": "^3.1.10",
| "stylus": "^0.64.0",
| "vue": "^3.5.13",
| "vue-router": "^4.5.1",
| "yargs": "^15.4.1"
| },
| "devDependencies": {
| "@vitejs/plugin-vue": "^5.2.3",
| "vite": "^6.2.4",
| "vite-plugin-vue-devtools": "^7.7.2"
| }
| }
|
|