-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 978 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
35
36
37
38
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"backend": "nodemon server.js",
"frontend": "npm run start --prefix ./client",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "11.3.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"lodash": "^4.17.15",
"mongoose": "^5.6.5",
"passport": "^0.4.0",
"passport-spotify": "^1.0.1",
"spotify-web-api-node": "^4.0.0"
},
"devDependencies": {
"concurrently": "^4.1.1",
"eslint": "5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
}
}