package.json 420 B

123456789101112131415161718192021
  1. {
  2. "name": "koa-demo",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "type": "module",
  7. "scripts": {
  8. "test": "echo \"Error: no test specified\" && exit 1",
  9. "start": "nodemon"
  10. },
  11. "keywords": [],
  12. "author": "",
  13. "license": "ISC",
  14. "dependencies": {
  15. "@koa/router": "^12.0.0",
  16. "koa": "^2.14.2",
  17. "koa-body": "^6.0.1",
  18. "koa-static": "^5.0.0",
  19. "mysql2": "^3.3.0"
  20. }
  21. }