-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 851 Bytes
/
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
{
"name": "flights-service",
"version": "1.0.0",
"description": "A simple microservice providing the shortest route between two airports.",
"main": "index.js",
"author": "Rasmus Lelumees",
"license": "MIT",
"scripts": {
"start": "node index.js",
"calculateRouteDistances": "node -r dotenv/config ./lib/db/scripts/calculateRouteDistances.js",
"calculateShortestPaths": "node -r dotenv/config ./lib/db/scripts/calculateShortestPaths.js"
},
"dependencies": {
"dotenv": "^6.0.0",
"geolib": "^2.0.24",
"knex": "^0.15.2",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-jwt": "^3.5.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.10",
"mysql2": "^1.6.1",
"node-dijkstra": "^2.5.0",
"url": "^0.11.0"
},
"devDependencies": {
"eslint": "^5.5.0"
}
}