-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.31 KB
/
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
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
{
"name": "task-3.5",
"version": "1.0.0",
"engines": {
"node": ">=20.17.0"
},
"main": "./build/index.js",
"scripts": {
"dev": "npm run prisma && npm run build && nodemon ./build/index.js",
"start": "node ./build/index.js",
"preprod": "npm run build && node ./build/index.js",
"build": "rimraf ./build && tsc",
"delete-build": "rimraf ./build",
"delete-js": "rimraf src//*.js",
"prepare": "cd .. && husky install task_3.1/.husky",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prisma": "npx prisma generate"
},
"keywords": [
"task-3.5",
"Telegram bot",
"Subscription bot"
],
"author": "Konstantin Potyomkin",
"license": "ISC",
"description": "Subscription bot,Every day at the chosen time at UTC timezone this bot should send what weather is expected today.",
"dependencies": {
"@abraham/reflection": "^0.12.0",
"@prisma/client": "^5.19.1",
"@t3-oss/env-core": "^0.10.1",
"cron": "^3.1.7",
"dotenv": "^16.3.1",
"geo-tz": "^8.1.1",
"glob": "^10.3.10",
"inversify": "^6.0.2",
"inversify-inject-decorators": "^3.1.0",
"inversify-logger-middleware": "^3.1.0",
"moment-timezone": "^0.5.45",
"mongodb": "^6.8.1",
"node-telegram-bot-api": "^0.63.0",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.8.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/node-telegram-bot-api": "^0.64.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"prisma": "^5.19.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
}
}