-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 732 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 732 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": "backend",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon -r dotenv/config index.js"
},
"author": "Ritesh Prajapati",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.11.0",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.5",
"multer": "^2.0.2",
"node-fetch": "^3.3.2",
"nodemailer": "^7.0.5",
"xlsx": "^0.18.5"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}