-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 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
{
"name": "archweekly-backend",
"version": "1.0.0",
"description": "AI-powered newsletter platform for DevOps & System Design",
"main": "dist/server.js",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "nodemon --ignore archweekly-curated.json --ignore system-design-resources.json --ignore '*.json' --exec ts-node src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"scraper": "ts-node src/scraper.ts",
"scrape:system-design": "ts-node src/system-design-scraper.ts",
"both": "concurrently \"npm run dev\" \"cd ../scaleweekly-frontend && npm run dev\"",
"test": "echo \"No tests yet\" && exit 0",
"typecheck": "tsc --noEmit",
"lint": "echo \"Linting not configured\" && exit 0"
},
"keywords": [
"newsletter",
"devops",
"system-design",
"scalability",
"ai",
"backend"
],
"author": "Prerana Hippargi",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@googleapis/youtube": "^30.1.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.9",
"@types/node-cron": "^3.0.11",
"axios": "^1.13.2",
"cheerio": "^1.1.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"googleapis": "^169.0.0",
"jsonwebtoken": "^9.0.3",
"mongodb": "^7.0.0",
"mongoose": "^9.1.1",
"node-cron": "^4.2.1",
"resend": "^6.6.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"concurrently": "^9.2.1",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2"
}
}