29 lines
1.0 KiB
JSON
29 lines
1.0 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|