forked from StatistikStadtZuerich/sszvis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) 路 1.99 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) 路 1.99 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
67
68
69
{
"name": "sszvis-monorepo",
"private": true,
"description": "Monorepo for the Statistik Stadt Z眉rich Visualization Library",
"repository": {
"type": "git",
"url": "https://github.com/StatistikStadtZuerich/sszvis.git"
},
"license": "BSD-3-Clause",
"packageManager": "pnpm@9.12.3",
"engines": {
"node": ">=22"
},
"devDependencies": {
"@changesets/changelog-github": "^1.0.1",
"@changesets/cli": "^3.0.2",
"@effect/tsgo": "latest",
"oxfmt": "latest",
"oxlint": "latest",
"playwright": "^1.55.0",
"turbo": "^2.5.8",
"typescript": "^7.0.2"
},
"scripts": {
"postinstall": "effect-tsgo patch --typescript",
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules apps/*/node_modules packages/*/node_modules",
"dev": "turbo run dev",
"test": "turbo run test",
"test:snapshot": "turbo run test:snapshot --filter=sszvis",
"type-check": "turbo run type-check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"check": "pnpm run lint && pnpm run format:check",
"regression": "pnpm --filter @sszvis/regression-cli exec tsx src/index.ts serve",
"regression:crawl": "pnpm --filter @sszvis/regression-cli exec tsx src/index.ts crawl",
"regression:export": "pnpm --filter @sszvis/regression-cli exec tsx src/index.ts export",
"changeset": "changeset",
"changeset:status": "changeset status",
"changeset:version": "changeset version",
"build:topo": "turbo run build --filter=@sszvis/geodata",
"version": "echo 'Do not version the root. See the Releasing section in AGENTS.md.' && exit 1"
},
"pnpm": {
"supportedArchitectures": {
"os": [
"current",
"linux",
"darwin"
],
"cpu": [
"current",
"x64",
"arm64"
],
"libc": [
"current",
"glibc",
"musl"
]
}
},
"workspaces": [
"apps/*",
"packages/*"
]
}