-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.57 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
58
59
{
"name": "upwork2tg",
"version": "1.0.0",
"main": "index.js",
"type": "commonjs",
"scripts": {
"dev": "nodemon --watch src --ext ts,js --exec ts-node -r tsconfig-paths/register src/index.ts",
"build": "tsc && tsc-alias",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"keywords": [
"upwork",
"telegram-bot",
"job-notifications",
"freelance",
"job-alerts",
"puppeteer",
"telegram",
"bot",
"upwork-bot",
"freelance-jobs",
"real-time-jobs",
"NodeJs"
],
"author": "CodeByStella",
"license": "ISC",
"description": "Upwork Job Notification Bot For Freelancers using node.js",
"dependencies": {
"@eslint/js": "^9.26.0",
"dotenv": "^16.5.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"module-alias": "^2.2.3",
"mongodb": "^6.16.0",
"mongoose": "^8.14.3",
"node-cron": "^4.0.5",
"nodemon": "^3.1.10",
"puppeteer-real-browser": "^1.4.2",
"telegraf": "^4.16.3",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.4",
"typescript-eslint": "^8.32.1",
"user-agents": "^1.1.538"
},
"devDependencies": {
"@types/node": "^22.15.17",
"@types/user-agents": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"cross-env": "^7.0.3",
"eslint": "^9.31.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.8.3"
}
}