Turn audio into a shareable video. forked from nypublicradio/audiogram

package.json 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "audiogram",
  3. "version": "0.9.6",
  4. "description": "Turn audio into a shareable video.",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "npm run postinstall && bin/server",
  8. "worker": "bin/worker",
  9. "postinstall": "mkdir -p editor/js && browserify client/index.js > editor/js/bundle.js",
  10. "rebuild": "npm run postinstall",
  11. "watch": "mkdir -p editor/js && watchify client/index.js -o editor/js/bundle.js",
  12. "debug": "npm run postinstall && DEBUG=1 bin/server",
  13. "test": "rm -rf test/tmp && tape 'test/**/*-test.js'",
  14. "dev": "npm run postinstall && node_modules/.bin/nodemon bin/server"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/nypublicradio/audiogram.git"
  19. },
  20. "keywords": [],
  21. "author": {
  22. "name": "Noah Veltman",
  23. "url": "https://twitter.com/veltman"
  24. },
  25. "license": "MIT",
  26. "dependencies": {
  27. "aws-sdk": "^2.2.39",
  28. "browserify": "^13.0.0",
  29. "canvas": "^2.6.1",
  30. "compression": "^1.6.1",
  31. "d3": "4.10.0",
  32. "dotenv": "^2.0.0",
  33. "express": "^4.17.1",
  34. "jquery": "^3.4.1",
  35. "mkdirp": "^0.5.1",
  36. "morgan": "^1.7.0",
  37. "multer": "^1.1.0",
  38. "node-ffprobe": "^1.2.2",
  39. "redis": "^2.4.2",
  40. "rimraf": "^2.5.0",
  41. "smartquotes": "^1.0.0",
  42. "subtitle": "^2.0.3",
  43. "underscore": "^1.8.3",
  44. "uuid": "^3.0.1",
  45. "webaudio-peaks": "0.0.5",
  46. "winston": "^2.2.0"
  47. },
  48. "devDependencies": {
  49. "supertest": "^4.0.0",
  50. "tape": "^4.6.0",
  51. "watchify": "^3.7.0",
  52. "nodemon": "^2.0.2"
  53. },
  54. "nodemonConfig": {
  55. "ignore": [
  56. "test/*",
  57. "tmp/*",
  58. ".jobs",
  59. "media/*",
  60. "bin/*",
  61. ".cache/*",
  62. ".config/*",
  63. ".npm/*",
  64. "node_modules/*"
  65. ],
  66. "delay": "2500"
  67. }
  68. }