forked from perliedman/elevation-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "elevation-service",
"packageManager": "[email protected]",
"type": "module",
"private": true,
"version": "3.0.0",
"scripts": {
"start": "node --require dd-trace/init dist/server.js",
"dev": "pnpm build; concurrently \"pnpm:dev:*\"",
"dev:watch": "tsc --watch",
"dev:start": "nodemon --watch 'dist' --exec 'pnpm start'",
"build": "tsc",
"test": "node --test --test-concurrency=1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.588.0",
"@fastify/compress": "^7.0.3",
"@fastify/cors": "^9.0.1",
"@mapbox/polyline": "^1.2.1",
"@sindresorhus/fnv1a": "^3.1.0",
"@turf/meta": "^6.5.0",
"dd-trace": "^5.14.1",
"dotenv": "^16.4.5",
"fastify": "^4.27.0",
"geobuf": "^3.0.2",
"lru-cache": "^10.2.2",
"pbf": "^3.2.1"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/geobuf": "^3.0.4",
"@types/geojson": "^7946.0.14",
"@types/mapbox__polyline": "^1.0.5",
"@types/node": "^20.14.1",
"@types/pbf": "^3.0.5",
"concurrently": "^8.2.2",
"eslint": "^9.4.0",
"geojson": "^0.5.0",
"globals": "^15.3.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
}
}