Files
api_user/package.json
2026-05-25 12:12:54 +08:00

23 lines
455 B
JSON

{
"name": "api_user",
"version": "1.0.0",
"description": "user api service",
"type": "module",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "node --test test/*.test.js"
},
"dependencies": {
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"@koa/cors": "^5.0.0",
"koa-router": "^12.0.1",
"mongoose": "^8.4.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"supertest": "^7.0.0"
}
}