-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 973 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 973 Bytes
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": "party-queue",
"version": "1.0.0",
"description": "Allow guests to add songs to a spotify queue via sms",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhamberlin/spotifyPartyQueue.git"
},
"keywords": [
"spotify",
"playlist",
"sms",
"twilio"
],
"author": "David Hamberlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/dhamberlin/spotifyPartyQueue/issues"
},
"homepage": "https://github.com/dhamberlin/spotifyPartyQueue#readme",
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"express-session": "^1.15.3",
"morgan": "^1.8.2",
"passport": "^0.3.2",
"passport-spotify": "^0.3.1",
"path": "^0.12.7",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"twilio": "^3.4.0"
}
}