-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "metawatch",
"version": "2.0.0",
"description": "Website metadata monitoring tool with advanced alerting",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "node --test --test-isolation=none",
"smoke:code": "node scripts/smoke-code.js",
"doctor:web": "node scripts/env-doctor.js --mode=web",
"doctor:worker": "node scripts/env-doctor.js --mode=worker",
"db:migrate": "node scripts/db-migrate.js",
"db:explain": "node scripts/db-explain.js",
"ci:check": "npm run smoke:code && npm test"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@bull-board/api": "^6.20.3",
"@bull-board/express": "^6.20.3",
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"bullmq": "^5.70.1",
"cheerio": "^1.0.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.6",
"diff": "^5.2.0",
"dotenv": "^16.4.1",
"ejs": "^3.1.9",
"exceljs": "^4.4.0",
"express": "^4.18.2",
"express-ejs-layouts": "^2.5.1",
"express-rate-limit": "^8.2.1",
"fast-xml-parser": "^4.3.6",
"helmet": "^8.1.0",
"ioredis": "^5.10.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.9",
"pdfkit": "^0.17.2",
"pg": "^8.11.3",
"puppeteer": "^24.37.5",
"stripe": "^17.4.0",
"tough-cookie": "^6.0.0",
"web-push": "^3.6.7",
"xlsx": "^0.18.5"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}