-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 3.92 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "onix-sports-v2",
"version": "1.0.0",
"description": "",
"author": "vkorop",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": "16.13.1"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prepare": "husky install"
},
"dependencies": {
"@liaoliaots/nestjs-redis": "9.0.5",
"@nestjs/common": "9.1.6",
"@nestjs/config": "2.2.0",
"@nestjs/core": "9.1.6",
"@nestjs/event-emitter": "1.3.1",
"@nestjs/jwt": "9.0.0",
"@nestjs/mongoose": "9.2.0",
"@nestjs/passport": "9.0.0",
"@nestjs/platform-express": "9.1.6",
"@nestjs/platform-socket.io": "9.1.6",
"@nestjs/schedule": "2.1.0",
"@nestjs/swagger": "6.1.3",
"@nestjs/testing": "9.2.1",
"@nestjs/websockets": "9.1.6",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"cookie-parser": "1.4.6",
"dotenv": "16.0.3",
"express": "4.18.2",
"fluent-ffmpeg": "2.1.2",
"handlebars": "4.7.7",
"ioredis": "5.3.1",
"jsonwebtoken": "9.0.0",
"lodash": "4.17.21",
"migrate-mongo": "9.0.0",
"module-alias": "2.2.2",
"mongodb": "4.11.0",
"mongoose": "6.7.0",
"nest-puppeteer": "1.1.1",
"passport-jwt": "4.0.0",
"puppeteer": "19.2.0",
"puppeteer-screen-recorder": "2.1.2",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.5.7",
"socket.io": "4.5.3",
"swagger-ui-express": "4.5.0",
"telegraf": "4.10.0",
"typegram": "3.12.0"
},
"devDependencies": {
"@nestjs/cli": "9.1.5",
"@nestjs/schematics": "9.0.3",
"@types/cookie-parser": "1.4.3",
"@types/cron": "2.0.0",
"@types/express": "4.17.14",
"@types/fluent-ffmpeg": "2.1.20",
"@types/jest": "29.2.0",
"@types/lodash": "4.14.186",
"@types/node": "18.11.7",
"@types/passport-jwt": "3.0.7",
"@types/puppeteer": "5.4.7",
"@types/supertest": "2.0.12",
"@types/validator": "13.7.10",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.26.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"jest": "29.2.2",
"prettier": "2.7.1",
"supertest": "6.3.1",
"ts-jest": "29.0.3",
"ts-loader": "9.4.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "4.8.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"_moduleAliases": {
"@shared": "./dist/components/shared",
"@components": "./dist/components",
"@filters": "./dist/filters",
"@guards": "./dist/guards",
"@interfaces": "./dist/interfaces",
"@pipes": "./dist/pipes",
"@dto": "./dist/dto",
"@responses": "./dist/responses",
"@interceptors": "./dist/interceptors",
"@decorators": "./dist/decorators"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}