-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 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
{
"name": "ebgeo-360-service",
"version": "1.0.0",
"description": "360 image service for EBGeo",
"type": "module",
"main": "src/server.js",
"scripts": {
"start": "node --env-file=.env src/server.js",
"dev": "node --env-file=.env --watch src/server.js",
"migrate": "node scripts/migrate.js",
"recalculate-targets": "node scripts/recalculate-targets.js",
"estimate-slope-roll": "node scripts/estimate-slope-roll.js",
"generate-pmtiles": "node scripts/generate-pmtiles.js",
"verify": "node scripts/verify.js",
"cleanup-wal": "node scripts/cleanup-wal.js",
"test": "node --test tests/**/*.test.js",
"knip": "knip",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@fastify/cors": "^10.0.2",
"@fastify/static": "^8.0.0",
"better-sqlite3": "^11.8.1",
"fastify": "^5.2.1",
"sharp": "^0.33.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^15.15.0",
"knip": "^5.83.1"
},
"author": "1º Centro de Geoinformação",
"license": "ISC",
"engines": {
"node": ">=22.0.0"
}
}