forked from vinaytheprogrammer/Blog_Post
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 700 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 700 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
{
"name": "fullstack-blog",
"version": "1.0.0",
"description": "fullstack blog app",
"main": "server.js",
"scripts": {
"server": "nodemon server.js",
"start": "node server.js"
},
"keywords": [
"blog",
"nodejs"
],
"author": "I-Novotek Academy",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.32.0",
"connect-mongo": "^4.6.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-session": "^1.17.3",
"method-override": "^3.0.0",
"mongoose": "^6.6.5",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}