You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "siimee-backend",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "nodemon server",
  8. "migrate": "knex migjrate:latest",
  9. "unmigrate": "knex migrate:down",
  10. "reseed": "knex migrate:rollback --all && knex migrate:latest && knex seed:run",
  11. "generate": "node ./db/data-generator/index.js",
  12. "seed": "knex seed:run",
  13. "test": "nyc ava --timeout=3000"
  14. },
  15. "author": "TOJ",
  16. "license": "UNLICENSED",
  17. "dependencies": {
  18. "@hapi/glue": "^8.0.0",
  19. "@hapi/hapi": "^20.1.3",
  20. "@hapi/inert": "^6.0.3",
  21. "@hapi/jwt": "^2.0.1",
  22. "@hapi/vision": "^6.0.1",
  23. "@hapipal/confidence": "^6.0.1",
  24. "@hapipal/schmervice": "^2.0.0",
  25. "@hapipal/schwifty": "^6.0.0",
  26. "compute-cosine-similarity": "^1.0.0",
  27. "dotenv": "^10.0.0",
  28. "exiting": "^6.0.1",
  29. "hapi-swagger": "^14.2.5",
  30. "haversine": "^1.1.1",
  31. "joi": "^17.4.0",
  32. "knex": "^0.21.19",
  33. "mysql": "^2.18.1",
  34. "objection": "^2.2.18",
  35. "secure-password": "^4.0.0"
  36. },
  37. "devDependencies": {
  38. "ava": "^3.15.0",
  39. "eslint": "^7.28.0",
  40. "nodemon": "^2.0.7",
  41. "nyc": "^15.1.0",
  42. "sinon": "^11.1.2"
  43. }
  44. }