package.json 496 B

123456789101112131415161718
  1. {
  2. "name": "mail-analytics-service",
  3. "version": "0.1.0",
  4. "description": "Tracks email delivery, openings, clicks and bounces",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "server": "node index.js"
  9. },
  10. "author": "James Peret <james.peret@gmail.com> (http://jamesperet.com)",
  11. "license": "ISC",
  12. "dependencies": {
  13. "chalk": "^4.1.2",
  14. "express": "^4.17.1",
  15. "kairoscope-db-models": "^0.1.3",
  16. "mongoose": "^6.0.8"
  17. }
  18. }