-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 763 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 763 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
{
"name": "express-starter",
"version": "1.0.0",
"description": "server side srcipting",
"main": "index.js",
"scripts": {
"dev": "set NODE_ENV=development& nodemon index.js",
"start": "node index.js",
"test": "jest --watch-all"
},
"author": "Sujoy dev",
"license": "ISC",
"devDependencies": {
"jest": "^26.0.1",
"nodemon": "^2.0.4"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"config": "^3.3.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.22.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.26.0",
"mongoose": "^5.9.18",
"morgan": "^1.10.0",
"nodemailer": "^6.4.8",
"pg-promise": "^10.5.6"
}
}