-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "melodicity",
"version": "1.0.0",
"description": "Music Label Platform",
"main": "server.js",
"type": "module",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon serevr.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harshitkd/Melodicity-SE-Project-.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^6.2.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.14",
"multer": "^1.4.3",
"nodemailer": "^6.6.1"
},
"devDependencies": {
"nodemon": "^2.0.7"
},
"bugs": {
"url": "https://github.com/harshitkd/Melodicity-SE-Project-/issues"
},
"homepage": "https://github.com/harshitkd/Melodicity-SE-Project-#readme"
}