forked from tf2-automatic/tf2-automatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.11 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.11 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
{
"name": "tf2-automatic",
"version": "0.0.0-dev",
"license": "MIT",
"scripts": {
"prepare": "is-ci || husky install",
"commit": "cz",
"start": "nx serve",
"build": "nx build",
"test": "nx test"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@nestjs/schematics": "^9.1.0",
"@nestjs/testing": "^9.4.0",
"@nrwl/cli": "15.9.2",
"@nrwl/eslint-plugin-nx": "15.9.2",
"@nrwl/jest": "15.9.2",
"@nrwl/js": "15.9.2",
"@nrwl/linter": "15.9.2",
"@nrwl/nest": "15.9.2",
"@nrwl/node": "15.9.2",
"@nrwl/webpack": "15.9.2",
"@nrwl/workspace": "15.9.2",
"@nx-tools/nx-container": "^4.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/amqplib": "^0.10.1",
"@types/ip": "^1.1.0",
"@types/jest": "29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/minio": "^7.0.18",
"@types/node": "18.15.11",
"@types/promise-retry": "^1.1.3",
"@types/steam-totp": "^2.1.0",
"@types/steam-user": "^4.26.1",
"@types/steamcommunity": "^3.43.2",
"@types/steamid": "^2.0.1",
"@types/uuid": "^9.0.1",
"@types/write-file-atomic": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "~8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-environment-node": "^29.5.0",
"nx": "15.9.2",
"prettier": "^2.8.7",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.0.3"
},
"dependencies": {
"@golevelup/nestjs-rabbitmq": "^3.6.0",
"@liaoliaots/nestjs-redis": "^9.0.5",
"@nestjs/axios": "^2.0.0",
"@nestjs/bullmq": "^1.1.0",
"@nestjs/common": "^9.4.0",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.4.0",
"@nestjs/event-emitter": "^1.4.1",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/swagger": "^6.3.0",
"@nestjs/terminus": "^9.2.2",
"@willsoto/nestjs-prometheus": "^5.1.1",
"axios": "^1.3.5",
"bottleneck": "^2.19.5",
"bullmq": "^3.10.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"fastq": "^1.15.0",
"ioredis": "^5.3.1",
"ip": "^2.0.0",
"joi": "^17.9.1",
"jsonwebtoken": "^9.0.0",
"minio": "^7.0.33",
"object-sizeof": "^2.6.1",
"path": "^0.12.7",
"prom-client": "^14.2.0",
"promise-retry": "^2.0.1",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"rxjs": "^7.8.0",
"steam-session": "^1.1.0",
"steam-totp": "^2.1.2",
"steam-tradeoffer-manager": "^2.10.5",
"steam-user": "^4.28.1",
"steamcommunity": "^3.44.3",
"steamid": "^2.0.0",
"tf2": "^3.0.2",
"tslib": "^2.5.0",
"uuid": "^9.0.0",
"write-file-atomic": "^5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}