This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
maple-brief-aggregator/package.json
T

46 lines
1.2 KiB
JSON

{
"name": "maple-brief-aggregator",
"version": "1.0.0",
"private": true,
"description": "Automated Canadian news aggregator with AI-assisted content synthesis and Google AdSense integration.",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"migrate": "prisma migrate dev --name init"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.19.0",
"cheerio": "^1.0.0",
"next": "^14.2.35",
"node-cron": "^3.0.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"prisma": "^5.19.0",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18.17"
}
}