Files
memory-infrastructure-palace/code/websites/pokedex.online/server/package.json

26 lines
615 B
JSON

{
"name": "pokedex-online-server",
"version": "1.0.0",
"type": "module",
"description": "Backend server for Pokedex Online - OAuth proxy and Gamemaster API",
"main": "oauth-proxy.js",
"scripts": {
"start": "node oauth-proxy.js",
"gamemaster": "node gamemaster-api.js",
"dev": "node oauth-proxy.js",
"test": "vitest"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"express-rate-limit": "^7.1.5",
"winston": "^3.11.0"
},
"devDependencies": {
"vitest": "^1.6.1",
"supertest": "^6.3.4"
}
}