-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.55 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.55 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
92
93
{
"name": "freemap-v3-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=22.0.0"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/FreemapSlovakia/freemap-v3-nodejs-backend.git"
},
"author": {
"name": "Freemap Slovakia",
"email": "freemap@freemap.sk"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FreemapSlovakia/freemap-v3-nodejs-backend/issues"
},
"lint-staged": {
"*.{js,ts}": [
"biome check",
"git add"
]
},
"scripts": {
"start": "node --enable-source-maps build/index.js",
"copy:proto": "cp src/routers/gallery/pictures.proto build/routers/gallery/pictures.proto",
"build": "tsc && pnpm run copy:proto",
"dev:serve": "pnpm run copy:proto && dotenvx run --overload -- sh -c 'node --enable-source-maps build/index.js | pino-pretty -S -t -i hostname,pid'",
"dev": "tsc-watch --onSuccess \"pnpm run dev:serve\"",
"precommit": "lint-staged",
"lint": "biome check",
"lint:fix": "biome check --write"
},
"dependencies": {
"@koa/router": "^15.4.0",
"@mapbox/tilebelt": "^2.0.3",
"@turf/bbox": "^7.3.4",
"@turf/boolean-intersects": "^7.3.4",
"@turf/center": "^7.3.4",
"better-sqlite3": "^12.9.0",
"etag": "^1.8.1",
"exifreader": "^4.38.1",
"gdal-async": "^3.12.3",
"got": "^15.0.2",
"kcors": "^2.2.2",
"koa": "^3.2.0",
"koa-body": "^7.0.1",
"koa-pino-logger": "^5.0.0",
"koa-websocket": "^7.0.0",
"mariadb": "^3.5.2",
"nanoid": "^5.1.7",
"oauth-1.0a": "^2.2.6",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"process-nextick-args": "^2.0.1",
"protobufjs": "^8.0.1",
"sharp": "0.35.0-rc.0",
"short-uuid": "^6.0.3",
"source-map-support": "^0.5.21",
"sql-template-tag": "^5.2.1",
"tsc-watch": "^7.2.0",
"ws": "^8.20.0",
"zod": "^4.3.6",
"zod-openapi": "^5.4.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@dotenvx/dotenvx": "^1.61.0",
"@types/better-sqlite3": "^7.6.13",
"@types/etag": "^1.8.4",
"@types/geojson": "^7946.0.16",
"@types/kcors": "^2.2.9",
"@types/koa": "^3.0.2",
"@types/koa-websocket": "^5.0.11",
"@types/node": "^24.12.2",
"@types/ws": "^8.18.1",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"node-addon-api": "^8.7.0",
"node-gyp": "^12.2.0",
"pino-pretty": "^13.1.3",
"ts-patch": "^3.3.0",
"typescript": "~6.0.2"
},
"resolutions": {
"@types/koa": "^3.0.0"
}
}