-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
45
46
{
"name": "essence",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"pretty": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,hbs}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@handlebars/allow-prototype-access": "^1.0.3",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^2.4.0",
"csurf": "^1.11.0",
"express": "^4.17.1",
"express-handlebars": "^5.1.0",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"handlebars": "^4.7.6",
"handlebars-helpers": "^0.10.0",
"helmet": "^4.0.0",
"i": "^0.3.6",
"mongoose": "^5.9.27",
"multer": "^1.4.2",
"nodemailer": "^6.4.11",
"nodemailer-sendgrid-transport": "^0.2.0",
"uuid": "^8.3.0",
"validator": "^13.1.1"
},
"devDependencies": {
"nodemon": "^2.0.4",
"prettier": "^2.8.3"
},
"nodemonConfig": {
"ignore": [
"data/*"
]
}
}