-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.56 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.56 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
{
"name": "monorepo",
"private": true,
"description": "The enmeshed Monorepo.",
"homepage": "https://enmeshed.eu",
"license": "AGPL-3.0-or-later",
"author": "j&s-soft AG",
"workspaces": [
"packages/core-types",
"packages/transport",
"packages/content",
"packages/consumption",
"packages/runtime-types",
"packages/runtime",
"packages/app-runtime"
],
"scripts": {
"build:node": "tsc --build",
"build:watch": "tsc --build -w",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:tsc",
"lint:eslint": "eslint",
"lint:prettier": "prettier --check .",
"lint:tsc": "npm run --workspaces lint:tsc",
"outdated": "ncu -i && ncu -i --workspaces",
"start:backbone": "docker compose -f .dev/compose.backbone.yml up -d",
"teardown:backbone": "docker compose -f .dev/compose.backbone.yml down -v",
"test:teardown": "docker compose -f .dev/compose.yml down -fsv"
},
"devDependencies": {
"@js-soft/eslint-config-ts": "^2.0.5",
"@js-soft/license-check": "^1.0.10",
"@types/jest": "^30.0.0",
"@types/node": "^24.12.0",
"enhanced-publish": "^1.1.7",
"eslint": "^10.1.0",
"jest": "^30.3.0",
"jest-expect-message": "^1.1.3",
"madge": "^8.0.0",
"npm-check-updates": "^19.6.6",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
}
}