forked from mattsgreen/audiogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "audiogram",
"version": "0.9.5",
"description": "Turn audio into a shareable video.",
"main": "index.js",
"config": {
"unsafe-perm": true
},
"scripts": {
"start": "bin/server",
"debug": "DEBUG=1 bin/server",
"worker": "bin/worker",
"build": "mkdir -p editor/js && browserify client/index.js > editor/js/bundle.js",
"watch": "mkdir -p editor/js && watchify client/index.js -o editor/js/bundle.js",
"test": "rm -rf test/tmp && tape 'test/**/*-test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/nypublicradio/audiogram.git"
},
"keywords": [],
"author": {
"name": "Noah Veltman",
"url": "https://twitter.com/veltman"
},
"license": "MIT",
"dependencies": {
"aws-sdk": "2.9.0",
"body-parser": "^1.17.1",
"browserify": "13.0.0",
"canvas": "git+https://github.com/chearon/node-canvas.git#12971f64a66b",
"compression": "1.6.2",
"concat-files": "^0.1.1",
"d3": "4.5.0",
"dotenv": "2.0.0",
"express": "4.14.1",
"jquery": "2.2.4",
"mkdirp": "0.5.1",
"morgan": "1.8.0",
"multer": "1.3.0",
"node-ffprobe": "1.2.2",
"node-uuid": "1.4.7",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"redis": "2.6.5",
"request": "^2.81.0",
"rimraf": "2.5.4",
"smartquotes": "1.0.0",
"transcript-editor": "^0.2.0",
"transcript-model": "^0.2.1",
"underscore": "1.8.3",
"uuid": "^3.0.1",
"webaudio-peaks": "0.0.5",
"winston": "2.3.1",
"xml2json": "^0.11.0"
},
"devDependencies": {
"supertest": "1.2.0",
"tape": "4.6.0",
"watchify": "3.7.0"
}
}