-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.95 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
68
69
70
71
72
73
74
{
"name": "smart-ai-recommendation-system",
"version": "1.0.0",
"description": "Smart Personalized Product Recommendation System - Multi-channel AI sales assistant",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"dev:all": "run-p dev dev:frontend",
"dev:frontend": "npm --prefix frontend run dev",
"build:frontend": "npm --prefix frontend run build",
"test": "jest --runInBand",
"test:unit": "jest tests/unit --runInBand",
"test:integration": "jest tests/integration --runInBand",
"test:e2e": "playwright test",
"test:coverage": "jest --coverage --runInBand",
"lint": "eslint src/ tests/",
"migrate": "node src/utils/migrate.js",
"seed": "node src/utils/seed.js"
},
"dependencies": {
"async-mutex": "^0.5.0",
"axios": "^1.6.2",
"better-sqlite3": "^12.8.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.3",
"morgan": "^1.10.0",
"natural": "^8.1.1",
"node-cron": "^3.0.3",
"nodemailer": "^8.0.4",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.11.3",
"twilio": "^4.20.0",
"uuid": "^9.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"npm-run-all2": "^8.0.4",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/frontend/.next/"
],
"modulePathIgnorePatterns": [
"<rootDir>/frontend/.next/"
],
"testMatch": [
"**/tests/**/*.test.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/app.js"
]
}
}