league_koa/package.json
2025-06-07 00:59:45 +01:00

25 lines
500 B
JSON

{
"name": "league_koa",
"version": "1.0.0",
"engines": {
"node": "20.x"
},
"description": "Reimplementation of my league_table API in koa",
"license": "MIT",
"author": "nplayfair",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.js"
},
"devDependencies": {
"nodemon": "^3.1.10",
"prettier": "^3.5.3"
},
"dependencies": {
"koa": "^3.0.0",
"redis": "^5.5.6"
}
}