-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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": "phd-website-backend",
"version": "1.0.0",
"description": "Admission portal for COEP's PhD programs",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"nodemonConfig": {
"ignore": [
"client/"
]
},
"author": "vishwajit kadam",
"license": "ISC",
"dependencies": {
"@react-pdf/renderer": "^2.0.21",
"axios": "^1.3.5",
"bcryptjs": "^2.4.3",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"dotenv": "^16.3.0",
"express": "^4.18.2",
"file-saver": "^2.0.5",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.6.0",
"mongoose": "^5.13.17",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-gridfs-storage": "^5.0.2",
"nodemailer": "^6.9.7",
"nodemailer-smtp-transport": "^2.7.4",
"nodemon": "^2.0.22",
"react-is": "^18.2.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"xlsx": "^0.18.5"
}
}