This commit is contained in:
2026-05-10 19:12:02 +02:00
commit 3398982ca8
19 changed files with 2152 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "dune-api",
"version": "1.0.0",
"description": "Node.js API for Dune: Awakening Questlog data with MongoDB and Swagger UI.",
"main": "src/server.js",
"type": "commonjs",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"import": "node scripts/import.js",
"import:smoke": "node scripts/import.js --max-pages=1",
"check": "node --check src/server.js && node --check src/app.js && node --check src/config.js && node --check src/db/client.js && node --check src/db/indexes.js && node --check src/datasets.js && node --check src/importer/importer.js && node --check src/importer/questlogClient.js && node --check src/routes/api.js && node --check src/swagger/openapi.js && node --check scripts/import.js"
},
"keywords": [
"dune-awakening",
"api",
"mongodb",
"swagger"
],
"license": "UNLICENSED",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"mongodb": "^6.12.0",
"swagger-ui-express": "^5.0.1"
}
}