package.json 904 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "express",
  3. "version": "1.0.0",
  4. "main": "dist/milvus_insight/express/src/app.js",
  5. "license": "MIT",
  6. "dependencies": {
  7. "@zilliz/milvus2-sdk-node": "^1.0.18",
  8. "cors": "^2.8.5",
  9. "express": "^4.17.1",
  10. "glob": "^7.2.0",
  11. "helmet": "^4.6.0",
  12. "node-cron": "^3.0.0",
  13. "rimraf": "^3.0.2",
  14. "socket.io": "^4.3.1"
  15. },
  16. "devDependencies": {
  17. "@types/cors": "^2.8.12",
  18. "@types/express": "^4.17.13",
  19. "@types/glob": "^7.2.0",
  20. "@types/node": "^16.11.6",
  21. "@types/node-cron": "^3.0.0",
  22. "@types/ws": "^8.2.0",
  23. "ts-node": "^10.4.0",
  24. "tslint": "^6.1.3",
  25. "typescript": "^4.4.4"
  26. },
  27. "scripts": {
  28. "prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
  29. "build": "yarn clean && tsc",
  30. "prestart": "yarn build",
  31. "start": "node .",
  32. "test": "echo \"Error: no test specified\" && exit 1",
  33. "clean": "rimraf dist"
  34. }
  35. }