package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. "build-statics": "cd web && npm run build -- --outDir ../public",
  9. "dev": "nodemon --watch src -e ts --exec 'ts-node src/index.ts'",
  10. "lint": "eslint --ext .ts src",
  11. "start": "node out/index.js",
  12. "test": "echo \"Error: no test specified\" && exit 1"
  13. },
  14. "keywords": [],
  15. "author": "",
  16. "license": "SEE LICENSE IN LICENSE.md",
  17. "devDependencies": {
  18. "@types/cors": "^2.8.17",
  19. "@types/express": "^4.17.21",
  20. "@types/jsonwebtoken": "^9.0.5",
  21. "@types/node": "^20.10.3",
  22. "@typescript-eslint/eslint-plugin": "^6.13.2",
  23. "@typescript-eslint/parser": "^6.13.2",
  24. "eslint": "^8.55.0",
  25. "nodemon": "^3.0.2",
  26. "ts-node": "^10.9.1",
  27. "typescript": "^5.3.2"
  28. },
  29. "dependencies": {
  30. "@edge/misc-utils": "^1.0.4",
  31. "cors": "^2.8.5",
  32. "dotenv": "^16.3.1",
  33. "express": "^4.18.2",
  34. "jsonwebtoken": "^9.0.2",
  35. "mongodb": "^6.3.0"
  36. }
  37. }