-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.07 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.07 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@data-fair/portals",
"version": "2.22.0",
"description": "Portals manager for data-fair",
"main": "index.js",
"type": "module",
"scripts": {
"build-types": "mkdir -p ui/src/components/vjsf && df-build-types . --vjsf-dir ui/src/components/vjsf",
"check-types": "tsc && npm -w portal run check-types && npm -w ui run check-types",
"dev-api": "npm -w api run dev",
"dev-deps": "mkdir -p dev/logs && docker compose --profile dev up -d --wait && docker compose --profile dev logs -f 2>&1 | tee dev/logs/docker-compose.log",
"test-deps": "docker compose --profile test up -d --wait",
"dev-ui": "mkdir -p dev/logs && npm -w ui run dev 2>&1 | tee dev/logs/dev-ui.log",
"dev-ingress-manager": "mkdir -p dev/logs && NODE_ENV=development node --disable-warning=ExperimentalWarning --watch dev/ingress-manager.ts 2>&1 | tee dev/logs/dev-ingress-manager.log",
"dev-zellij": "dotenv -v DEV_SHELL=$(basename \"$SHELL\") -- zellij --layout .zellij.kdl",
"lint": "eslint . && npm -w ui run lint",
"lint-fix": "eslint --fix . && npm -w ui run lint-fix",
"prepare": "husky || true",
"prepare-fonts": "rm -rf api/assets/fonts && mkdir api/assets/fonts && node dev/scripts/prepare-fonts.ts",
"quality": "npm run lint && npm run build-types && npm -w ui run build && npm run check-types && npm run test && npm audit --omit=dev --audit-level=critical",
"test": "NODE_CONFIG_DIR=./api/config/ NODE_ENV=test EVENTS_LOG_LEVEL=alert playwright test --max-failures=1",
"test-unit": "npm run test -- --project unit",
"test-api": "npm run test -- --project api",
"test-e2e": "npm run test -- --project e2e"
},
"workspaces": [
"api",
"ui",
"portal",
"shared/markdown"
],
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/data-fair/portals.git"
},
"author": "Alban Mouton <alban.mouton@koumoul.com>",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://gitlab.com/data-fair/portals/issues"
},
"homepage": "https://gitlab.com/data-fair/portals#readme",
"engines": {
"node": "v24"
},
"dependencies": {
"@data-fair/lib-types-builder": "^1.12.0",
"patch-package": "^8.0.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@data-fair/lib-common-types": "^1.20.2",
"@koumoul/vjsf-compiler": "^1.2.3",
"@koumoul/vjsf-markdown": "^0.5.0",
"@playwright/test": "^1.59.1",
"@types/config": "^3.3.5",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.3",
"@types/memoizee": "^0.4.12",
"@types/multer": "^2.0.0",
"@types/node": "^24.0.14",
"@types/resolve-path": "^1.4.3",
"@types/sanitize-html": "^2.16.0",
"commitlint": "^20.5.0",
"dotenv": "^17.3.1",
"dotenv-cli": "^11.0.0",
"eslint": "^9.35.0",
"eslint-plugin-vue": "^10.4.0",
"eslint-plugin-vuetify": "^2.7.2",
"form-data": "^4.0.4",
"husky": "^9.1.7",
"neostandard": "^0.12.2",
"tough-cookie": "^5.1.2"
},
"overrides": {
"vue": "3.5.30"
},
"relativeDependencies": {
"@data-fair/lib-vuetify": "../lib/packages/vuetify"
}
}