-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1008 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
39
{
"name": "sent",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "cross-env NODE_ENV=production HOST=localhost node app",
"dev": "cross-env NODE_ENV=development HOST=localhost nodemon app",
"lint": "eslint ./"
},
"author": "Kaustub, Suket, Avi",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-mysql-session": "^2.1.4",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"glob": "^7.1.6",
"moment": "^2.27.0",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.11",
"nodemailer-sendgrid-transport": "^0.2.0",
"parse-address": "^1.1.2",
"parse-address-string": "0.0.3",
"uuid": "^8.3.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"nodemon": "^2.0.4"
}
}