-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.16 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.16 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
{
"name": "@data-fair/processings",
"version": "5.1.3",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build-types": "df-build-types ./",
"check-types": "tsc",
"dev-api": "npm -w api run dev",
"dev-deps": "docker compose --profile dev up -d --wait",
"dev-ui": "npm -w ui run dev",
"dev-worker": "npm -w worker run dev",
"dev-zellij": "export DEV_SHELL=$(basename \"$SHELL\") && zellij --layout .zellij.kdl && rm data/zellij-deps-ready",
"lint": "eslint . && npm -w ui run lint",
"lint-fix": "eslint --fix . && npm -w ui run lint-fix",
"prepare": "husky || true",
"stop-dev-deps": "docker compose --profile dev stop",
"test-base": "NODE_ENV=test EVENTS_LOG_LEVEL=alert node --disable-warning=ExperimentalWarning --test-force-exit --test-concurrency=1 --test",
"test-only": "npm run test-base -- --test-only test-it/*.ts",
"test": "npm run test-base test-it/*.ts",
"test-images": "docker compose --profile dev --profile testImages up -d --build --wait",
"quality": "npm run dev-deps && npm run lint && npm run build-types && npm run check-types && npm -w ui run build && npm run test && npm audit --omit=dev --audit-level=critical"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/data-fair/processings.git"
},
"author": "",
"license": "AGPL-3.0-only",
"workspaces": [
"ui",
"api",
"worker",
"shared"
],
"bugs": {
"url": "https://github.com/data-fair/processings/issues"
},
"homepage": "https://github.com/data-fair/processings#readme",
"dependencies": {
"@data-fair/lib-types-builder": "^1.8.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@data-fair/lib-common-types": "^1.10.6",
"@data-fair/lib-node": "^2.8.1",
"@data-fair/lib-utils": "^1.6.1",
"@types/config": "^3.3.5",
"@types/debug": "^4.1.12",
"@types/semver": "^7.7.1",
"eslint": "^9.29.0",
"eslint-plugin-vue": "^10.2.0",
"eslint-plugin-vuetify": "^2.5.3",
"husky": "^9.1.6",
"neostandard": "^0.12.1",
"tough-cookie": "^5.0.0",
"typescript": "^5.8.3"
}
}