package.json 978 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "herda",
  3. "private": true,
  4. "version": "0.0.0",
  5. "description": "Keep on top of it all with Herda",
  6. "scripts": {
  7. "build": "tsc",
  8. "dev": "nodemon --watch src -e ts --exec 'ts-node src/index.ts'",
  9. "lint": "eslint --ext .ts src",
  10. "start": "node out/src/index.js",
  11. "test": "echo \"Error: no test specified\" && exit 1"
  12. },
  13. "keywords": [],
  14. "author": "",
  15. "license": "SEE LICENSE IN LICENSE.md",
  16. "devDependencies": {
  17. "@types/cors": "^2.8.17",
  18. "@types/express": "^4.17.21",
  19. "@types/jsonwebtoken": "^9.0.5",
  20. "@types/node": "^20.10.3",
  21. "@typescript-eslint/eslint-plugin": "^6.13.2",
  22. "@typescript-eslint/parser": "^6.13.2",
  23. "eslint": "^8.55.0",
  24. "nodemon": "^3.0.2",
  25. "ts-node": "^10.9.1",
  26. "typescript": "^5.3.2"
  27. },
  28. "dependencies": {
  29. "@edge/misc-utils": "^1.0.4",
  30. "cors": "^2.8.5",
  31. "dotenv": "^16.3.1",
  32. "express": "^4.18.2",
  33. "jsonwebtoken": "^9.0.2",
  34. "mongodb": "^6.3.0"
  35. }
  36. }