-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 943 Bytes
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 943 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
35
36
37
38
39
{
"name": "backend-test-biapi",
"version": "1.0.0",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "Library Book Management API",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^7.1.5",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.0",
"multer": "^1.4.5-lts.1",
"validator": "^13.11.0"
},
"devDependencies": {
"jest": "^30.0.5",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.0.3",
"supertest": "^7.1.4"
}
}