-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "open-issue-monitor",
"version": "1.3.0",
"main": "index.js",
"repository": "https://github.com/0xVikasRushi/OpenIssueMonitor",
"author": "0xvikasrushi <0xvikas@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^1.5.1",
"dotenv": "^16.3.1",
"node-cron": "^3.0.2",
"node-telegram-bot-api": "^0.63.0",
"typescript": "^5.2.2"
},
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc --build",
"start": "tsc && node dist/index.js",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"devDependencies": {
"@types/node": "^20.8.2",
"@types/node-cron": "^3.0.9",
"@types/node-telegram-bot-api": "^0.61.8",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1"
},
"engines": {
"node": ">=18.0.0"
},
"engineStrict": true
}