-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 970 Bytes
/
package.json
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
{
"name": "github-project-reminders",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"test": "npx jest",
"job": "node dist/src/jobs/index.js",
"prod": "npm run build && npm run job",
"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}'"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"prettier": "^3.3.2",
"ts-results": "^3.3.0",
"tslib": "^2.6.3"
},
"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"
}
}