-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "Jukebox",
"version": "0.0.2",
"description": "A music server that streams mp3 files based on YouTube videos and Spotify data",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alex Wohlbruck ([email protected])",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.16.1",
"cheerio": "^1.0.0-rc.2",
"combined-stream": "^1.0.5",
"cookie-parser": "^1.4.3",
"country-data": "0.0.31",
"dotenv": "^10.0.0",
"express": "^4.14.1",
"express-geoip": "^2.2.0",
"googleapis": "^16.1.0",
"method-override": "^2.3.7",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"socket.io": "^2.0.1",
"spotify-web-api-node": "^2.3.6",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^3.0.1",
"morgan": "^1.8.0",
"nodemon": "^1.11.0"
}
}