-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
36
37
38
39
40
{
"name": "bookhive",
"version": "0.1.0",
"description": "Online Library System boilerplate",
"main": "src/app.js",
"type": "module",
"scripts": {
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"seed": "node scripts/seed.js",
"test": "cross-env NODE_ENV=test node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand"
},
"dependencies": {
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"compression": "^1.7.5",
"cookie-parser": "^1.4.7",
"dotenv": "^16.6.1",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.18.2",
"express-validator": "^7.2.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"mongodb": "^6.19.0",
"mongoose": "^8.6.0",
"morgan": "^1.10.0",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.6"
},
"devDependencies": {
"cross-env": "^10.0.0",
"eslint": "^9.8.0",
"jest": "^30.1.3",
"nodemon": "^3.1.4",
"supertest": "^7.1.4"
}
}