-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.3 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.3 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
{
"name": "github-project-reminders",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"test": "npx jest --testPathIgnorePatterns=dist/",
"job": "node dist/src/jobs/index.js",
"task": "npx ts-node -r tsconfig-paths/register src/tasks.ts",
"dev": "nodemon src/jobs/dailyTaskReminder.ts",
"check": "prettier --check '**/*.{css,scss,html,js,md,ts,tsx}'",
"format": "prettier --write '**/*.{css,scss,html,js,md,ts,tsx}'",
"discord:commands:deploy": "npx ts-node -r tsconfig-paths/register src/infrastructure/discord/deployCommands.ts",
"discord:bot:start": "npx ts-node -r tsconfig-paths/register src/infrastructure/discord/bot.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"commander": "^12.1.0",
"discord.js": "^14.19.3",
"dotenv": "^16.4.5",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"prettier": "^3.3.2",
"ts-results": "^3.3.0",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/node-cron": "^3.0.11",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}