-
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) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 820 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": "kick-it",
"version": "1.0.0",
"description": "a spotify party playlist tool",
"main": "server.js",
"scripts": {
"test": "npm test",
"start": "node server.js",
"dev": "nodemon"
},
"keywords": [
"spotify",
"api",
"spotify",
"playlist"
],
"author": "Melanie Rogan",
"license": "MIT",
"devDependencies": {
"mocha": "^7.0.1",
"nodemon": "^2.0.3",
"sinon": "^8.1.1",
"supertest": "^4.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.17.0",
"mongodb": "^3.5.3",
"mongoose": "^5.9.1",
"passport": "^0.4.1",
"passport-spotify": "^1.1.0",
"spotify-web-api-node": "^4.0.0"
}
}