package.json 829 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "demo01",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "start": "node bin/www",
  7. "dev": "./node_modules/.bin/nodemon bin/www",
  8. "prd": "pm2 start bin/www",
  9. "test": "echo \"Error: no test specified\" && exit 1"
  10. },
  11. "dependencies": {
  12. "crypto": "^1.0.1",
  13. "debug": "^4.1.1",
  14. "jsonwebtoken": "^8.5.1",
  15. "koa": "^2.7.0",
  16. "koa-bodyparser": "^4.2.1",
  17. "koa-convert": "^1.2.0",
  18. "koa-cors": "0.0.16",
  19. "koa-json": "^2.0.2",
  20. "koa-jwt": "^4.0.0",
  21. "koa-logger": "^3.2.0",
  22. "koa-onerror": "^4.1.0",
  23. "koa-router": "^7.4.0",
  24. "koa-static": "^5.0.0",
  25. "koa-views": "^6.2.0",
  26. "koa2-cors": "^2.0.6",
  27. "moment": "^2.29.1",
  28. "mysql": "^2.18.1",
  29. "pug": "^2.0.3",
  30. "typeorm": "^0.2.31"
  31. },
  32. "devDependencies": {
  33. "nodemon": "^1.19.1"
  34. }
  35. }