-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1007 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": "dollar-app",
"version": "1.0.0",
"description": "Server for taking vendor's data for the branded company Dollar",
"main": "app.js",
"author": "Khushal Agarwal",
"license": "MIT",
"scripts": {
"start": "nodemon server/app.js",
"server": "nodemon server/app.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"dependencies": {
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-validator": "^6.6.1",
"http-errors": "^1.8.0",
"http-status": "^1.4.2",
"json-2-csv": "^3.7.6",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"mongoose": "^5.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.11",
"uuid": "^8.3.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.4"
}
}