-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 864 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 864 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
{
"name": "shared_playlist",
"version": "1.0.0",
"description": "web app that lets user create a playlist and collaborate with others to add songs to the playlist",
"main": "server.js",
"scripts": {
"app": "nodemon app",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run app\" \"npm run client\"",
"heroku-postbuild": "set NPM_CONFIG_PRODUCTION=true && npm install --prefix client && npm run build --prefix client"
},
"author": "Arcturus",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"config": "^3.3.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.9.17",
"process": "^0.11.10",
"react-router-dom": "^5.2.0",
"request": "^2.88.2"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}