-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.53 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
{
"name": "bikehopper-app",
"version": "0.1.0",
"description": "BikeHopper application server",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "docker build -q -f Dockerfile.dev -t bikehopper-app:dev .",
"start": "npm run build && docker run -p 3001:3001 -p 9229:9229 -e PORT=3001 -e PROTOCOL=http -e GRAPHHOPPER_SERVICE_NAME=api.bikehopper -e PHOTON_SERVICE_NAME=api.bikehopper -e NOMINATIM_SERVICE_NAME=api.bikehopper -e FILE_SERVICE_NAME=api.bikehopper -e NAMESPACE=staging -e HOSTNAME=techlabor.org/v1 -e NODE_ENV=development --rm -v .:/app -it bikehopper-app:dev",
"start-nodocker": "NODE_ENV=development PROTOCOL=http GRAPHHOPPER_SERVICE_NAME=localhost:8989 NAMESPACE= HOSTNAME= PORT=3001 node --inspect=127.0.0.1:9229 src/index.js",
"start-nodemon": "docker compose up --build bikehopper-web-app",
"test": "npm t"
},
"author": "Andy McCoy",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=18"
},
"dependencies": {
"@keyv/redis": "^2.8.4",
"@turf/helpers": "^7.1.0",
"@turf/line-slice": "^7.1.0",
"axios": "^1.6.8",
"body-parser": "^1.19.1",
"compare-versions": "^6.0.0-rc.1",
"dotenv": "^16.0.3",
"dotenv-expand": "^10.0.0",
"express": "^4.17.2",
"express-validator": "^7.0.1",
"gtfs-realtime-bindings": "^1.1.1",
"helmet": "^5.0.2",
"keyv": "^4.5.4",
"luxon": "^3.2.1",
"pino": "^8.7.0",
"pino-http": "^8.2.1",
"pino-http-print": "^3.1.0",
"ramda": "^0.29.1"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}