-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.88 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ua-teammates",
"version": "0.0.3",
"description": "Bot for searching teammates for games from Ukraine",
"author": "Havrylenko Ivan <havrylenko.inbox@gmail.com>",
"private": true,
"license": "MIT",
"keywords": [
"nest",
"nestjs",
"telegraf",
"telegram",
"telegram bot",
"telegram bot api",
"bot",
"bot api"
],
"bugs": {
"url": "https://github.com/gavrylenkoIvan/team-ua/issues"
},
"repository": "git@github.com:gavrylenkoIvan/team-ua.git",
"contributors": [
{
"email": "havrylenko.inbox@gmail.com",
"name": "Havrylenko Ivan",
"url": "https://havrylenko.site"
}
],
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"start": "nest start",
"start:dev": "NODE_ENV=development nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "NODE_ENV=production node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --runInBand --detectOpenHandles --forceExit",
"test:watch": "jest --watch --runInBand --detectOpenHandles --forceExit",
"test:cov": "jest --coverage --runInBand --detectOpenHandles --forceExit",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"compodoc:dev": "compodoc -p tsconfig.doc.json -n 'Ua teammates documentation' -s -r 3000",
"compodoc:build": "compodoc -p tsconfig.doc.json -n 'Ua teammates documentation'",
"pg:up": "docker run --name postgres -p 5432:5432 -e POSTGRES_PASSWORD=password -d postgres",
"redis:up": "docker run -d -p 6379:6379 --name redis --network redisnet redis",
"redisnet:up": "docker network create -d bridge redisnet",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"typeorm": "typeorm-ts-node-commonjs",
"migrations:run": "npm run typeorm migration:run -- -d src/datasource",
"services:up": "npm run redisnet:up && npm run redis:up && npm run pg:up",
"services": "npm run redis:up && npm run pg:up"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.474.0",
"@aws-sdk/lib-storage": "^3.468.0",
"@nestjs/cache-manager": "^2.1.1",
"@nestjs/common": "^10.2.10",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.10",
"@nestjs/throttler": "^5.1.0",
"@nestjs/typeorm": "^10.0.1",
"@telegraf/session": "^2.0.0-beta.6",
"cache-manager": "^5.3.1",
"cache-manager-redis-yet": "^4.1.2",
"dotenv": "^16.3.1",
"joi": "^17.11.0",
"kysely": "^0.23.5",
"nestjs-i18n": "^10.4.0",
"nestjs-telegraf": "^2.7.0",
"node-fetch": "^2.7.0",
"pg": "^8.11.3",
"redis": "^4.6.11",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"telegraf": "^4.15.3",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@automock/adapters.nestjs": "^2.1.0",
"@automock/jest": "^2.0.0",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@commitlint/config-angular": "^18.4.3",
"@compodoc/compodoc": "^1.1.23",
"@golevelup/ts-jest": "^0.4.0",
"@nestjs/cli": "^10.2.1",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.2.10",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/node-fetch": "^2.6.8",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-mock": "^29.7.0",
"prettier": "^3.1.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3",
"vitepress": "^1.0.0-rc.31"
}
}