-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 877 Bytes
/
package.json
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
{
"name": "mapsrc",
"version": "0.0.1",
"private": true,
"author": "Stefan Keim (indus)",
"workspaces": [
"packages/*",
"gh-pages"
],
"scripts": {
"dev": "concurrently -n lib,page \"pnpm dev:lib\" \"pnpm dev:page\" ",
"dev:page": "vite",
"dev:lib": "pnpm dev -r --workspace-concurrency Infinity --filter @mapsrc/*",
"build": "tsc && vite build",
"build:lib": "pnpm build --filter @mapsrc/*",
"serve": "vite preview"
},
"devDependencies": {
"@mapsrc/fgb": "workspace:*",
"@mapsrc/gpbf": "workspace:*",
"@mapsrc/topo": "workspace:*",
"@mapsrc/utils": "workspace:*",
"@types/geobuf": "^3.0.1",
"@types/pbf": "^3.0.2",
"flatgeobuf": "~3.17.5",
"geobuf": "^3.0.2",
"pbf": "^3.2.1",
"concurrently": "^6.3.0",
"maplibre-gl": "^1.15.2",
"typescript": "^4.3.2",
"vite": "^2.6.4"
}
}