-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 3.84 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
{
"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",
"check-dead-code": "knip --no-progress --reporter compact",
"check-duplicates": "jscpd --config .jscpd.json --cross-formats js-ts --no-tips apps packages integrations services scripts",
"check-infrastructure": "bash scripts/check-infrastructure.sh",
"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",
"mobile:doctor": "pnpm -C apps/mobile run doctor",
"mobile:prebuild": "pnpm -C apps/mobile run prebuild",
"mobile:verify": "pnpm -C apps/mobile run test && pnpm -C apps/mobile run test:native && pnpm -C apps/mobile run check-types && pnpm -C apps/mobile run doctor",
"mobile:prebuild:check": "pnpm -C apps/mobile exec tsx scripts/clean-prebuild-check.mts",
"mobile:bundle:check": "pnpm -C apps/mobile exec tsx scripts/check-background-bundle.mts",
"mobile:qa:validate": "pnpm -C apps/mobile exec tsx qa/validate-report.mts",
"mobile:smoke": "pnpm -C apps/mobile exec tsx scripts/run-maestro.mts",
"mobile:build:android": "pnpm -C apps/mobile exec expo run:android --variant release",
"mobile:build:ios": "pnpm -C apps/mobile exec expo run:ios --configuration Release",
"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",
"check-openapi": "pnpm -C apps/api exec tsx scripts/openapi/generate.ts --check",
"openapi:generate": "pnpm -C apps/api exec tsx scripts/openapi/generate.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",
"mobile:release:prepare": "pnpm -C apps/mobile exec tsx release/prepare.mts",
"mobile:release:ios": "pnpm -C apps/mobile exec tsx release/build-ios.mts",
"mobile:release:android": "pnpm -C apps/mobile exec tsx release/build-android.mts",
"mobile:release:verify": "pnpm -C apps/mobile exec tsx release/verify-artifact.mts"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@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",
"jscpd": "^5.0.16",
"knip": "^6.32.2",
"turbo": "^2.10.9",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@11.21.0+sha512.521705bce689924eac72f5a3587122f362689ef6571e55ba80076fd637c11132ecffada26fad4ea79c485bfddbfd3d5a2a5b05805a77e893de71ec8a6cca3bb1",
"engines": {
"node": ">=24"
}
}