-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "openmapapi",
"version": "1.0.5",
"main": "dist/app.js",
"scripts": {
"dev": "nodemon --exec ts-node src/app.ts",
"build": "tsc",
"start": "node dist/app.js",
"test": "echo \"No tests specified\" && exit 0",
"docker:build": "docker build -t openmaps-api .",
"docker:run": "docker run -p 3000:3000 openmaps-api",
"k8s:deploy": "./scripts/deploy.sh",
"k8s:delete": "kubectl delete namespace openmaps"
},
"author": "",
"license": "MIT",
"description": "Open Map API - Google Maps API compatible geocoding and routing service",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^6.2.0",
"@koa/bodyparser": "^6.0.0",
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.1",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"koa": "^2.14.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/koa": "^2.13.12",
"@types/koa__cors": "^4.0.0",
"@types/koa__router": "^12.0.4",
"@types/node": "^20.10.5",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}