package.json 736 B

1234567891011121314151617181920212223242526272829
  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": "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. "ts-node": "^10.9.1",
  23. "typescript": "^5.3.2"
  24. },
  25. "dependencies": {
  26. "dotenv": "^16.3.1",
  27. "express": "^4.18.2"
  28. }
  29. }