-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 2.26 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": "openmapx",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"lint": "biome check . && pnpm check-translations",
"format": "biome format --write .",
"clean": "turbo clean && rm -rf node_modules",
"check-types": "turbo run check-types",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "OPENMAPX_SKIP_SLOW_CRYPTO=1 vitest run --coverage",
"prepare": "husky",
"redis:flush": "docker exec docker-redis-1 redis-cli FLUSHALL",
"check-translations": "pnpm -C packages/i18n exec tsx scripts/check-translations.ts",
"check-data-flows": "pnpm -C packages/cli exec tsx ../../scripts/check-data-flows.ts",
"check-dockerfile-sync": "pnpm -C packages/cli exec tsx ../../scripts/check-dockerfile-workspace-sync.ts",
"check-feed-ids": "pnpm -C packages/cli exec tsx ../../scripts/check-feed-ids.ts",
"check-credential-keys": "pnpm -C packages/cli exec tsx ../../scripts/check-credential-keys.ts",
"check-legal-tables": "pnpm -C packages/cli exec tsx ../../scripts/check-legal-tables.ts",
"check-legal-updated": "pnpm -C packages/cli exec tsx ../../scripts/check-legal-updated.ts",
"check-legal-urls": "pnpm -C packages/cli exec tsx ../../scripts/check-legal-urls.ts",
"check-routing-canaries": "pnpm -C packages/cli exec tsx ../../scripts/check-routing-canaries.ts",
"check-license-metadata": "pnpm -C packages/cli exec tsx ../../scripts/check-license-metadata.ts",
"check-toolchain-pins": "pnpm -C packages/cli exec tsx ../../scripts/check-toolchain-pins.ts",
"gen-ev-vehicles": "pnpm -C packages/cli exec tsx ../../scripts/ev-vehicles/generate.ts",
"openmapx": "pnpm -C packages/cli exec tsx src/index.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@changesets/cli": "^2.31.1",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@vitest/coverage-v8": "^4.1.10",
"husky": "^9.1.7",
"turbo": "^2.10.8",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@11.15.1+sha512.81350b07e53c9538a02f1f2303b4290fa2d7be04e56e2a970c4cc4b417dc761de196edabd49d55c7dc9580db81007c44143e4e3d7e462b3000d23c255122d065",
"engines": {
"node": ">=24"
}
}