pg-rest-api/package.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2022-05-02 22:28:04 +02:00
{
"private": true,
"name": "postgres-gtfs-rest-api",
2023-07-07 13:29:19 +02:00
"description": "REST API to interact with postgres database",
2024-01-31 15:19:43 +01:00
"version": "0.22.1",
2022-05-02 22:28:04 +02:00
"main": "index.js",
2023-11-24 08:03:31 +01:00
"keywords": [
"public",
"transport",
"mobility",
"postgresql",
"rest",
"api"
],
2022-05-02 22:28:04 +02:00
"author": "Software Ingenieur Begerad <dialog@SwIngBe.de>",
2023-07-07 13:29:19 +02:00
"homepage": "https://git.wtf-eg.de/dancesWithCycles/gtfs-display",
"repository": "https://git.wtf-eg.de/dancesWithCycles/gtfs-display",
"bugs": "https://git.wtf-eg.de/dancesWithCycles/gtfs-display/issues",
2022-05-02 22:28:04 +02:00
"license": "GPL-3.0-or-later",
"engines": {
2024-01-03 21:57:43 +01:00
"node": "<=18.19.0"
2022-05-02 22:28:04 +02:00
},
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js"
},
"dependencies": {
2022-06-20 08:23:53 +02:00
"compression": "1.7.4",
"cors": "2.8.5",
"debug": "4.3.4",
2023-11-24 07:59:55 +01:00
"dotenv": "16.3.1",
"express": "4.18.2",
"express-rate-limit": "7.1.5",
2022-06-20 08:23:53 +02:00
"fs": "0.0.1-security",
"helmet": "5.1.1",
2022-06-20 08:23:53 +02:00
"https": "1.0.0",
2023-11-24 07:59:55 +01:00
"pg": "8.11.3"
2022-05-02 22:28:04 +02:00
},
"devDependencies": {
2023-11-24 07:59:55 +01:00
"nodemon": "3.0.1"
2022-05-02 22:28:04 +02:00
}
}