-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 803 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 803 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
34
{
"name": "digischool",
"version": "1.0.0",
"description": "The backend for digischool project",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon app.js"
},
"author": "Bijoy Das",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=18.18.0 <19.0.0"
},
"dependencies": {
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.7",
"nodemon": "^3.0.1",
"validator": "^13.11.0"
}
}