-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 855 Bytes
/
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
{
"name": "employee-info-store-project",
"version": "1.0.0",
"description": "A short mini project related to Employee Management System in MERN stack",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"Employee-Management-System",
"EMS",
"Employee-CMS"
],
"author": "Shubham Maurya",
"license": "ISC",
"devDependencies": {
"nodemon": "3.1.9"
},
"dependencies": {
"bcrypt": "5.0.1",
"compression": "1.7.5",
"cors": "2.8.5",
"dotenv": "16.4.7",
"express": "4.21.2",
"express-async-errors": "3.1.1",
"express-rate-limit": "6.6.0",
"helmet": "6.0.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"mongoose": "6.13.5",
"xss-clean": "0.1.1"
}
}