-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "meetmusic",
"version": "1.0.0",
"description": "An online social network for musicians to connect with each other, share content, connecting with people with similar interests, and more.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"nodemon server.js\" \"cd client && npm start\"",
"start": "nodemon server.js",
"render-post-build": "cd client && yarn install --ignore-engines && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilorwork/MeetMusic.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ilorwork/MeetMusic/issues"
},
"homepage": "https://github.com/ilorwork/MeetMusic#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.1",
"cloudinary": "^1.32.0",
"concurrently": "^7.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.0",
"nodemon": "^2.0.19",
"validator": "^13.7.0"
}
}