石墨消解仪后端用nodejs编写,与嵌入式端交互和前端交互均用ws
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
663 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. {
  2. "name": "chicken-breeding-nodejs",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "dev": "nodemon ./src/main.js",
  8. "test": "node ./src/test/tcpClient.js",
  9. "prod": "pm2 start ./src/main.js"
  10. },
  11. "keywords": [],
  12. "author": "maochaoying",
  13. "license": "ISC",
  14. "dependencies": {
  15. "bcryptjs": "^2.4.3",
  16. "dotenv": "^16.0.3",
  17. "jsonwebtoken": "^9.0.0",
  18. "koa": "^2.14.1",
  19. "koa-body": "^6.0.1",
  20. "koa-router": "^12.0.0",
  21. "moment": "^2.29.4",
  22. "mysql2": "^3.2.0",
  23. "sequelize": "^6.29.1",
  24. "uuid": "^9.0.0",
  25. "ws": "^8.13.0"
  26. },
  27. "devDependencies": {
  28. "nodemon": "^2.0.21"
  29. }
  30. }