-
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.66 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.66 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": "as-decoder",
"version": "1.6.0",
"description": "Web crawler queue system",
"main": "dist/server.js",
"scripts": {
"build": "tsc && cp src/services/ai/prompt.txt dist/services/ai/",
"start": "pm2 start ecosystem.config.js",
"dev": "ts-node src/server.ts",
"dev:fresh": "./scripts/reset-db.sh && npm run dev",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:coverage": "NODE_ENV=test jest --coverage",
"seed": "ts-node scripts/seed-queue.ts",
"seed:bash": "./scripts/seed-queue.sh",
"reset": "./scripts/reset-db.sh",
"status": "./scripts/status.sh",
"deploy": "./scripts/deploy.sh",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:start-watch": "pm2 start ecosystem.config.js --watch",
"pm2:restart": "pm2 restart as-decoder",
"pm2:reload": "pm2 reload as-decoder",
"pm2:stop": "pm2 stop as-decoder",
"reload": "npm run build && pm2 reload ecosystem.config.js",
"pm2:logs": "pm2 logs as-decoder --lines 200",
"restart-jobs": "./scripts/restart-failed.sh"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@mozilla/readability": "^0.5.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.3",
"@types/node": "^24.2.1",
"better-sqlite3": "^12.2.0",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"joi": "^18.0.0",
"jsdom": "^25.0.1",
"node-abort-controller": "^3.1.1",
"node-fetch": "^2.7.0",
"pm2": "^6.0.8",
"puppeteer": "^23.8.0",
"typescript": "^5.9.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/jsdom": "^21.1.7",
"@types/supertest": "^6.0.3",
"jest": "^30.0.5",
"supertest": "^7.1.4",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2"
}
}