-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 KB
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": "LocalRadio",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf ./dist && babel ./src -d ./dist --copy-files && npm run -s buildPublic",
"buildPublic": "cd public && npm run build",
"prestart": "npm run -s build",
"start": "node dist/index.js",
"dev": "nodemon --inspect -w ./src --exec \"babel-node ./src\""
},
"keywords": [],
"author": "etiaro",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"express": "^4.16.3",
"ffmpeg-normalize": "^1.8.0",
"get-youtube-id": "^1.0.1",
"glob": "^7.1.7",
"jsonwebtoken": "^8.5.1",
"loudness": "https://github.com/etiaro/node-loudness.git",
"moment": "^2.24.0",
"mysql": "^2.18.1",
"play-sound": "^1.1.3",
"request": "^2.88.2",
"serialport": "^9.0.1",
"youtube-mp3-downloader": "^0.7.7",
"youtube-playlist-scraper": "^2.1.1",
"ytdl-core": "^4.8.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"nodemon": "^2.0.7",
"rimraf": "^2.7.1"
}
}