package.json 815 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "demo-backend",
  3. "version": "0.1.0",
  4. "description": "",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "build": "tsc",
  9. "format": "prettier --write \"**/*.+(js|ts|json)\"",
  10. "lint": "eslint --ext .js,.ts .",
  11. "start": "PORT=3001 ts-node src/index.ts"
  12. },
  13. "author": "",
  14. "license": "Apache-2.0",
  15. "dependencies": {
  16. "serialport": "^9.2.4",
  17. "smartknobjs": "^0.1.0",
  18. "socket.io": "^4.5.4"
  19. },
  20. "devDependencies": {
  21. "@types/express": "^4.17.14",
  22. "@types/node": "^18.11.10",
  23. "@types/serialport": "^8.0.2",
  24. "@typescript-eslint/eslint-plugin": "^5.40.1",
  25. "@typescript-eslint/parser": "^5.40.1",
  26. "eslint": "^8.25.0",
  27. "nodemon": "^2.0.20",
  28. "prettier": "^2.4.1",
  29. "ts-node": "^10.2.1",
  30. "typescript": "^4.9.3"
  31. }
  32. }