-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.74 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
{
"name": "servizo",
"version": "1.0.0",
"description": "A comprehensive service booking platform for home services",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest --passWithNoTests",
"test:unit": "jest __tests__/services.test.js",
"test:integration": "jest __tests__/integration --runInBand",
"test:integration:auth": "jest __tests__/integration/auth.integration.test.js",
"test:integration:booking": "jest __tests__/integration/booking.integration.test.js",
"test:integration:service": "jest __tests__/integration/service.integration.test.js",
"test:integration:review": "jest __tests__/integration/review.integration.test.js",
"test:all": "jest --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --runInBand"
},
"keywords": [
"service",
"booking",
"home-services",
"express",
"mongodb",
"ejs"
],
"author": "Spydiecy",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"compromise": "^14.14.4",
"connect-mongo": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^6.10.0",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"ml-matrix": "^6.12.1",
"mongoose": "^7.5.0",
"multer": "^1.4.5-lts.1",
"natural": "^8.1.0",
"nodemailer": "^7.0.10",
"otp-generator": "^4.0.1",
"redis": "^5.9.0",
"socket.io": "^4.8.1"
},
"devDependencies": {
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Spydiecy/Servizo.git"
}
}