package.json 821 B

12345678910111213141516171819202122232425262728293031
  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/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/express": "^4.17.21",
  18. "@types/node": "^20.10.3",
  19. "@typescript-eslint/eslint-plugin": "^6.13.2",
  20. "@typescript-eslint/parser": "^6.13.2",
  21. "eslint": "^8.55.0",
  22. "nodemon": "^3.0.2",
  23. "ts-node": "^10.9.1",
  24. "typescript": "^5.3.2"
  25. },
  26. "dependencies": {
  27. "dotenv": "^16.3.1",
  28. "express": "^4.18.2",
  29. "mongodb": "^6.3.0"
  30. }
  31. }