30 lines
803 B
JSON
30 lines
803 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",
|
|
"dev": "node oauth-proxy.js",
|
|
"build": "echo 'Backend is Node.js - no build step required'",
|
|
"gamemaster": "node gamemaster-api.js",
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"lint": "echo 'Add ESLint when ready'",
|
|
"validate": "node utils/env-validator.js"
|
|
},
|
|
"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"
|
|
}
|
|
}
|