-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.05 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.05 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
71
72
73
74
75
76
77
78
79
{
"name": "cs-club-bot",
"version": "2.10.0",
"description": "Automated Telegram bot for CS internship clubs, with feedback system and AI-driven analysis.",
"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 . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"act:ci": "act --env-file .env.act --quiet",
"act:ping": "act workflow_dispatch --secret-file .env.act",
"check": "npm run lint && npm run test && npm run format:check",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/cs-internship/CS-Club-Bot.git"
},
"keywords": [
"telegram-bot",
"cs-club",
"bot",
"nodejs",
"telegraf",
"notion",
"scheduler",
"student-management"
],
"author": {
"name": "Ali Sadeghi",
"url": "https://github.com/Ali-Sdg90"
},
"contributors": [
{
"name": "Ali Sadeghi",
"url": "https://github.com/Ali-Sdg90"
}
],
"private": true,
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.1",
"@notionhq/client": "^3.1.3",
"axios": "^1.9.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jalaali-js": "^1.2.8",
"jsdom": "^27.0.0",
"moment-jalaali": "^0.10.4",
"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.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^29.6.1",
"nodemon": "^3.0.2",
"prettier": "^3.6.2",
"semantic-release": "^24.2.9"
}
}