-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.82 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.82 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "openskidata-processor",
"version": "1.0.0",
"description": "Data pipeline for processing OpenStreetMap and Skimap.org data into OpenSkiData and OpenSkiMap tiles",
"main": "run.sh",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"prettierPath": null,
"detectOpenHandles": true,
"globalSetup": "<rootDir>/src/testSetup.ts"
},
"prettier": {},
"dependencies": {
"@ngageoint/geopackage": "^4.2.6",
"@turf/along": "^7",
"@turf/bbox-polygon": "^7",
"@turf/boolean-contains": "^7",
"@turf/boolean-intersects": "^7.2.0",
"@turf/boolean-point-in-polygon": "^7",
"@turf/boolean-valid": "^7.2.0",
"@turf/buffer": "^7",
"@turf/centroid": "^7",
"@turf/helpers": "^7",
"@turf/length": "^7",
"@turf/nearest-point": "^7",
"@turf/nearest-point-on-line": "^7",
"async-mutex": "^0.5.0",
"better-sqlite3": "^11.10.0",
"dataloader": "^2",
"date-fns": "^4.1.0",
"iso3166-2-db": "^2",
"lodash": "^4",
"merge2": "^1",
"ngeohash": "^0.6.3",
"object-hash": "^3",
"openskidata-format": "^12.1.0",
"osmtogeojson": "3.0.0-beta.5",
"parallel-transform": "^1",
"pg": "^8.12.0",
"sharp": "^0.33.5",
"tmp": "^0.2.4",
"topojson-client": "^3",
"topojson-server": "^3",
"uuid": "^10"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/geojson": "^7946",
"@types/jest": "^29",
"@types/lodash": "^4",
"@types/merge2": "^1",
"@types/ngeohash": "^0.6.2",
"@types/node": "^22",
"@types/object-hash": "^3",
"@types/parallel-transform": "^1",
"@types/pg": "^8.11.10",
"@types/tmp": "^0.2.0",
"@types/topojson-client": "^3",
"@types/topojson-server": "^3",
"@types/uuid": "^10",
"concurrently": "^9.1.0",
"jest": "^29",
"nock": "^14.0.0",
"prettier": "^3",
"ts-jest": "^29",
"tsx": "^4.20.3",
"typescript": "^5"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"dev:all": "concurrently \"npm run dev\" \"/usr/local/bin/init-postgres.sh\"",
"format": "prettier --write . --ignore-path .gitignore",
"test": "jest",
"record-tests": "jest -u",
"check-types": "tsc --project tsconfig.typecheck.json",
"download": "node --optimize_for_size --max_old_space_size=${MAX_OLD_SPACE_SIZE:-4096} dist/scripts/download.js",
"prepare-geojson": "node --optimize_for_size --max_old_space_size=${MAX_OLD_SPACE_SIZE:-4096} dist/scripts/prepare_geojson.js",
"debug-geocode": "node dist/scripts/debug_geocode.js",
"merge-outputs": "node dist/scripts/merge_outputs.js",
"extract-tiles": "node dist/scripts/extract_tiles.js",
"clear-cache": "node dist/scripts/clear_cache.js"
},
"author": "Russell Porter",
"license": "ISC"
}