-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 983 Bytes
/
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
{
"name": "blender",
"version": "1.0.0",
"description": "",
"main": "index.js",
"homepage": "https://spotify-blender.herokuapp.com/",
"repository": {
"type": "git",
"url": "https://github.com/alexmasi/blender"
},
"scripts": {
"start:server": "cd backend && nodemon server.js",
"start:client": "cd client && npm start",
"start:dev": "concurrently --kill-others-on-fail \"npm run start:server\" \"npm run start:client\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"start": "cd backend && node server.js"
},
"author": "Alex Masi",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"concurrently": "^3.6.1",
"express": "^4.16.3",
"mongoose": "^5.0.16",
"morgan": "^1.9.0",
"nodemon": "^1.17.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"querystring": "~0.2.0",
"request": "~2.83.0",
"spotify-web-api-node": "^3.1.1",
"python-shell": "latest"
}
}