package.json 896 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "workout-tracker",
  3. "version": "1.0.0",
  4. "description": "Personal workout tracker",
  5. "homepage": "https://github.com/MorganLee909/workout-tracker#readme",
  6. "bugs": {
  7. "url": "https://github.com/MorganLee909/workout-tracker/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/MorganLee909/workout-tracker.git"
  12. },
  13. "license": "ISC",
  14. "author": "Lee Morgan",
  15. "type": "module",
  16. "main": "app.js",
  17. "scripts": {
  18. "test": "echo \"Error: no test specified\" && exit 1",
  19. "dev": "nodemon app.js --ignore views/build/ --ignore build.html --ext js,css,html"
  20. },
  21. "dependencies": {
  22. "bcrypt": "^6.0.0",
  23. "compression": "^1.8.0",
  24. "cookie-parser": "^1.4.7",
  25. "cors": "^2.8.5",
  26. "esbuild": "^0.25.4",
  27. "express": "^5.1.0",
  28. "html-minifier-terser": "^7.2.0",
  29. "jsonwebtoken": "^9.0.2",
  30. "mongoose": "^8.14.3"
  31. }
  32. }