mirror of
https://github.com/kainy/Open-API.git
synced 2026-06-04 10:13:49 +08:00
f99c163c57
网关框架。
27 lines
581 B
JSON
27 lines
581 B
JSON
{
|
|
"name": "api-billing-system",
|
|
"version": "1.0.0",
|
|
"description": "A robust API billing system built with Koa.js",
|
|
"main": "src/app.js",
|
|
"scripts": {
|
|
"start": "node src/app.js",
|
|
"dev": "nodemon src/app.js",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"koa": "^2.14.2",
|
|
"koa-router": "^12.0.1",
|
|
"koa-bodyparser": "^4.4.1",
|
|
"mongoose": "^7.5.0",
|
|
"winston": "^3.10.0",
|
|
"joi": "^17.10.1",
|
|
"dotenv": "^16.3.1",
|
|
"moment": "^2.29.4",
|
|
"redis": "^4.6.8"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.6.4",
|
|
"nodemon": "^3.0.1"
|
|
}
|
|
}
|