-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 800 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 800 Bytes
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
{
"name": "blogapp",
"version": "1.0.0",
"description": "Simple nodejs blog site",
"main": "app.js",
"scripts": {
"start": "node app.js",
"prettier": "prettier --write \"**/*.js\""
},
"author": "sagar karki",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"connect-flash": "^0.1.1",
"dompurify": "^2.0.11",
"dotenv": "^8.2.0",
"ejs": "^3.1.2",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-session": "^1.17.1",
"jsdom": "^16.2.2",
"marked": "^1.0.0",
"method-override": "^3.0.0",
"mongoose": "^5.9.12",
"nodemailer": "^6.4.6",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"slugify": "^1.4.0"
},
"devDependencies": {
"countable": "^3.0.1",
"prettier": "^2.1.2"
}
}