-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.53 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.53 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
{
"name": "crypto-bot-contest",
"version": "1.0.0",
"description": "Backend Auction Challenge - Telegram Gift Auction Inspired System",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"start:dev": "ts-node-dev --respawn --transpile-only src/main.ts",
"start:prod": "node dist/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"load-test": "node scripts/bot-load-test.js"
},
"keywords": [
"auction",
"telegram",
"backend",
"nodejs",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@nestjs/cache-manager": "^3.1.0",
"@nestjs/common": "^10.3.0",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.3.0",
"@nestjs/jwt": "^11.0.2",
"@nestjs/mongoose": "^10.0.2",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^10.3.0",
"@nestjs/platform-socket.io": "^10.4.21",
"@nestjs/schedule": "^6.1.0",
"@nestjs/swagger": "^7.0.0",
"@nestjs/throttler": "^6.5.0",
"@nestjs/websockets": "^10.4.21",
"@types/compression": "^1.8.1",
"bcrypt": "^6.0.0",
"cache-manager": "^7.2.8",
"cache-manager-redis-yet": "^5.1.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"compression": "^1.8.1",
"helmet": "^8.1.0",
"mongoose": "^8.0.3",
"nestjs-pino": "^4.5.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pino": "^8.17.2",
"pino-http": "^9.0.0",
"pino-pretty": "^10.3.1",
"redis": "^5.10.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"socket.io": "^4.8.3"
},
"devDependencies": {
"@nestjs/cli": "^10.2.1",
"@nestjs/schematics": "^10.0.3",
"@nestjs/testing": "^10.3.0",
"@types/bcrypt": "^6.0.0",
"@types/express": "^4.17.21",
"@types/helmet": "^0.0.48",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.6",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"mongodb-memory-server": "^11.0.1",
"prettier": "^3.1.1",
"supertest": "^7.2.2",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}