website-monitor/backend/package.json

57 lines
1.4 KiB
JSON

{
"name": "website-monitor-backend",
"version": "1.0.0",
"description": "Backend API for Website Change Detection Monitor",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"migrate": "tsx src/db/migrate.ts",
"test": "jest",
"lint": "eslint src --ext .ts"
},
"keywords": [
"website",
"monitor",
"change-detection"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.13.2",
"bcryptjs": "^2.4.3",
"bullmq": "^5.1.0",
"cheerio": "^1.1.2",
"cors": "^2.8.5",
"diff": "^5.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.8",
"openai": "^6.16.0",
"pg": "^8.11.3",
"serpapi": "^2.2.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/diff": "^5.0.9",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.6",
"@types/nodemailer": "^6.4.14",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}