@raclettejs/core 0.1.20 → 0.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/cli.js +4 -4
- package/dist/cli.js.map +2 -2
- package/package.json +5 -3
- package/raclette.default.config.yaml +60 -0
- package/services/backend/package.json +2 -2
- package/services/backend/yarn.lock +5458 -3685
- package/services/frontend/.yarn/install-state.gz +0 -0
- package/services/frontend/package.json +1 -1
- package/services/frontend/src/orchestrator/components/composition/WidgetsLayoutLoader.vue +2 -1
- package/services/frontend/src/orchestrator/router/routerHooks/beforeEach.ts +1 -1
- package/services/frontend/src/orchestrator/router/routes.ts +4 -2
- package/services/frontend/yarn.lock +5224 -3322
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@raclettejs/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
4
4
|
"description": "racletteJS core package",
|
|
5
5
|
"repository": "https://gitlab.com/raclettejs/core",
|
|
6
6
|
"author": "Pacifico Digital Explorations GmbH <info@raclettejs.com>",
|
|
@@ -35,7 +35,9 @@
|
|
|
35
35
|
"README.md",
|
|
36
36
|
"yarn.lock",
|
|
37
37
|
"src/types.ts",
|
|
38
|
-
"LICENSE.md"
|
|
38
|
+
"LICENSE.md",
|
|
39
|
+
"CONTRIBUTING.md",
|
|
40
|
+
"raclette.default.config.yaml"
|
|
39
41
|
],
|
|
40
42
|
"exports": {
|
|
41
43
|
".": {
|
|
@@ -74,7 +76,7 @@
|
|
|
74
76
|
},
|
|
75
77
|
"devDependencies": {
|
|
76
78
|
"@eslint/js": "9.35.0",
|
|
77
|
-
"@raclettejs/types": "^0.1.
|
|
79
|
+
"@raclettejs/types": "^0.1.22",
|
|
78
80
|
"@types/fs-extra": "11.0.4",
|
|
79
81
|
"@types/js-yaml": "4.0.9",
|
|
80
82
|
"@types/node": "24.5.1",
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
name: "raclette-app"
|
|
2
|
+
root: ".raclette"
|
|
3
|
+
global:
|
|
4
|
+
requireAuthentication: true
|
|
5
|
+
services:
|
|
6
|
+
frontend:
|
|
7
|
+
enabled: true
|
|
8
|
+
port: 8081
|
|
9
|
+
installPackages: []
|
|
10
|
+
backend:
|
|
11
|
+
enabled: true
|
|
12
|
+
port: 8082
|
|
13
|
+
enableDebug: false
|
|
14
|
+
installPackages: []
|
|
15
|
+
mongodb:
|
|
16
|
+
enabled: true
|
|
17
|
+
port: 27017
|
|
18
|
+
cache:
|
|
19
|
+
enabled: true
|
|
20
|
+
port: 6379
|
|
21
|
+
workbench:
|
|
22
|
+
enabled: false
|
|
23
|
+
frontendPort: 8083
|
|
24
|
+
backendPort: 8084
|
|
25
|
+
modules: []
|
|
26
|
+
plugins: []
|
|
27
|
+
env:
|
|
28
|
+
development: {}
|
|
29
|
+
production:
|
|
30
|
+
NODE_ENV: "production"
|
|
31
|
+
frontend:
|
|
32
|
+
framework: "vue"
|
|
33
|
+
i18n:
|
|
34
|
+
locales: ["en-EU"]
|
|
35
|
+
priorities:
|
|
36
|
+
app: 10
|
|
37
|
+
".": 30
|
|
38
|
+
vue:
|
|
39
|
+
plugins: []
|
|
40
|
+
backend:
|
|
41
|
+
sockets:
|
|
42
|
+
autoSend:
|
|
43
|
+
compositions: true
|
|
44
|
+
interactionLinks: true
|
|
45
|
+
projectConfig: true
|
|
46
|
+
security:
|
|
47
|
+
requireAuth: true
|
|
48
|
+
tokenValidation: "jwt"
|
|
49
|
+
options:
|
|
50
|
+
adapter: "memory"
|
|
51
|
+
connectionTimeout: 3000
|
|
52
|
+
pingInterval: 1500
|
|
53
|
+
pingTimeout: 1000
|
|
54
|
+
sourceDirectories: []
|
|
55
|
+
packageMerging:
|
|
56
|
+
frontend: [{ file: "./packages.json", key: "frontend" }]
|
|
57
|
+
backend: [{ file: "./packages.json", key: "backend" }]
|
|
58
|
+
lockFiles:
|
|
59
|
+
frontend: "./app.frontend.yarn.lock"
|
|
60
|
+
backend: "./app.backend.yarn.lock"
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@fastify/cors": "11.1.0",
|
|
28
28
|
"@fastify/jwt": "10.0.0",
|
|
29
|
+
"@fastify/rate-limit": "10.3.0",
|
|
29
30
|
"@fastify/schedule": "6.0.0",
|
|
30
31
|
"@fastify/sensible": "6.0.3",
|
|
31
|
-
"@fastify/rate-limit": "10.3.0",
|
|
32
32
|
"@sinclair/typebox": "0.34.41",
|
|
33
33
|
"@types/vary": "1.1.3",
|
|
34
34
|
"axios": "1.13.2",
|
|
@@ -63,4 +63,4 @@
|
|
|
63
63
|
"typescript": "5.9.2",
|
|
64
64
|
"typescript-eslint": "8.44.0"
|
|
65
65
|
}
|
|
66
|
-
}
|
|
66
|
+
}
|