-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (43 loc) · 1.13 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
39
40
41
42
43
44
{
"name": "spotify-playground",
"version": "1.0.0",
"description": "Play around with spotify",
"main": "server.js",
"scripts": {
"client": "cd client && npm start",
"server": "node server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install --production && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RidhikGovind/spotify-playground.git"
},
"keywords": [
"spotify"
],
"author": "Ridhik Govind",
"license": "ISC",
"bugs": {
"url": "https://github.com/RidhikGovind/spotify-playground/issues"
},
"homepage": "https://github.com/RidhikGovind/spotify-playground#readme",
"engines": {
"node": "12.18.3"
},
"dependencies": {
"axios": "^0.21.1",
"cluster": "^0.7.7",
"connect-history-api-fallback": "^1.6.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"querystring": "^0.2.0",
"request": "^2.88.2"
},
"devDependencies": {
"concurrently": "^5.3.0"
}
}