-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.05 KB
/
package.json
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
{
"name": "taskpod",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/worker.ts",
"addTestTask": "ts-node scripts/addTestTask.ts",
"getIncompleteJobs": "ts-node scripts/getIncompleteJobs.ts",
"updateZeros": "ts-node scripts/updateZeros.ts",
"findUsersWithoutGithubProfile": "ts-node scripts/findUsersWithoutGithubProfile.ts",
"findUsersWithZeroPointsAndGithubProfile": "ts-node scripts/findUsersWithZeroPointsAndGithubProfile.ts",
"clean:failedTasks": "ts-node scripts/cleanFailedTasks.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.22.0",
"@types/node": "^22.9.0",
"axios": "^1.7.7",
"bullmq": "^5.25.1",
"dotenv": "^16.4.5",
"ioredis": "^5.4.1",
"lru-cache": "^11.0.2",
"node-cron": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/node-cron": "^3.0.11"
}
}