-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "@pencilpix/peaks",
"version": "0.3.0",
"description": "nodejs server that accept posting a url of audio file and respond with it's peaks.",
"main": "Server.js",
"scripts": {
"start": "node Server.js",
"dev": "nodemon Server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pencilpix/peaks.git"
},
"keywords": [
"peaks",
"Audio",
"waveform",
"nodejs"
],
"author": "Mohamed Hassan <[email protected]> (http://mohamedhassan.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pencilpix/peaks/issues"
},
"homepage": "https://github.com/pencilpix/peaks#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"canvas": "^2.0.0-alpha.13",
"express": "^4.16.3",
"ffmpeg-static": "^2.2.1",
"mongoose": "^5.3.1",
"save-file": "^1.2.0",
"tmp": "^0.0.33",
"waveform-node": "^0.3.1"
},
"devDependencies": {
"dotenv": "^6.0.0",
"nodemon": "^1.17.3"
}
}