-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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
45
46
47
48
{
"name": "icpc",
"version": "1.0.0",
"description": "ICPC Dhaka Regional Contest 2021",
"main": "index.js",
"scripts": {
"start": "node index",
"client": "npm start --prefix client",
"client-install": "npm i --prefix client",
"server": "nodemon index",
"dev": "concurrently \"npm run server\" \"npm run client\" ",
"prod": "NODE_ENV=production node index",
"prod:win": "set NODE_ENV=production&node index"
},
"keywords": [
"MERN"
],
"author": "MD. Sakib Khan, Hussain MD Safwan",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@sendgrid/mail": "^7.4.2",
"axios": "^0.21.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"convert-excel-to-json": "^1.7.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"got": "^11.8.0",
"joi": "^17.3.0",
"json2csv": "^5.0.6",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.10.9",
"multer": "^1.4.2",
"nodemailer": "^6.4.14",
"sslcommerz": "^1.0.4",
"uuid": "^8.3.1",
"xls-parser": "^3.1.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.5"
}
}