-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.63 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
{
"name": "openconditions",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"clean": "turbo run clean && rm -rf node_modules",
"typecheck": "turbo run typecheck && tsc -p scripts/tsconfig.json",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --passWithNoTests --coverage",
"gen:credentials": "pnpm --filter @openconditions/ingest-framework build && pnpm --filter @openconditions/roads build && tsx scripts/gen-credentials.ts --write",
"check-credentials": "pnpm --filter @openconditions/ingest-framework build && pnpm --filter @openconditions/roads build && tsx scripts/gen-credentials.ts",
"check:mobilithek-references": "pnpm --filter @openconditions/roads... build && tsx scripts/check-mobilithek-references.ts",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@openconditions/ingest-framework": "workspace:*",
"@openconditions/roads": "workspace:*",
"@types/node": "^26.1.2",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"husky": "^9.1.7",
"json5": "^2.2.3",
"prettier": "^3.9.6",
"tsup": "^8.5.1",
"tsx": "^4.23.5",
"turbo": "^2.10.8",
"typescript": "^5.0.0",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@11.1.3",
"engines": {
"node": ">=24"
}
}