-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 731 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 731 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
{
"name": "blogging-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start-dev": "set NODE_ENV=development&& nodemon server.js --ignore public/*",
"start-prod": "set NODE_ENV=production&& nodemon server.js --ignore public/*"
},
"author": "Mohamed Muntasir",
"license": "MIT",
"engines": {
"node": "^16"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.7",
"nanoid": "^3.3.1",
"pug": "^3.0.2",
"slugify": "^1.6.5"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}