-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.53 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "waste-management-backend",
"version": "1.0.0",
"description": "Smart Waste Management System API - MVP Backend",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"seed": "node src/utils/seed.js",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/**/*.js",
"!src/utils/seed.js",
"!server.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"testMatch": [
"**/__tests__/**/*.test.js"
],
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setup.js"
]
},
"keywords": [
"waste",
"management",
"smart",
"iot",
"api"
],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.1",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.3",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.2.3",
"nodemon": "^3.1.7",
"supertest": "^7.1.4"
}
}