-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.81 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "cs-queue-bot",
"version": "3.1.15",
"description": "Automated Telegram bot for managing the CS Internship queue group, with Azure DevOps integration.",
"main": "./index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"act": "act --env-file .env.act --quiet",
"check": "npm run format:check && npm run lint && npm test && echo \"All checks passed successfully\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/cs-internship/CS-Queue-Bot.git"
},
"keywords": [
"telegram-bot",
"cs-queue",
"bot",
"nodejs",
"telegraf"
],
"author": {
"name": "Ali Sadeghi",
"url": "https://github.com/Ali-Sdg90"
},
"contributors": [
{
"name": "Ali Sadeghi",
"url": "https://github.com/Ali-Sdg90"
}
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"axios": "^1.8.1",
"dayjs": "^1.11.18",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jalali-moment": "^3.3.11",
"node-cron": "^4.2.1",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"babel-jest": "^29.6.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "^29.6.1",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"semantic-release": "^24.2.9"
}
}