package.json 771 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "playableads-platform-server",
  3. "version": "1.0.0",
  4. "description": "Playable Ads Platform - Server",
  5. "private": true,
  6. "scripts": {
  7. "dev": "npx tsx watch src/index.ts",
  8. "build": "npx tsc",
  9. "start": "node dist/index.js"
  10. },
  11. "dependencies": {
  12. "adm-zip": "^0.5.16",
  13. "archiver": "^7.0.1",
  14. "better-sqlite3": "^11.7.0",
  15. "cors": "^2.8.5",
  16. "express": "^4.21.2",
  17. "multer": "^1.4.5-lts.2",
  18. "uuid": "^11.1.0"
  19. },
  20. "devDependencies": {
  21. "@types/adm-zip": "^0.5.7",
  22. "@types/archiver": "^6.0.3",
  23. "@types/better-sqlite3": "^7.6.12",
  24. "@types/cors": "^2.8.17",
  25. "@types/express": "^5.0.1",
  26. "@types/multer": "^1.4.12",
  27. "@types/uuid": "^10.0.0",
  28. "tsx": "^4.19.3",
  29. "typescript": "^5.8.3"
  30. }
  31. }