This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.04 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
{
"name": "spaceadventure-farmabuzer-lite",
"version": "0.0.1",
"description": "The bot automatically plays the game \"Space Adventure\" (Telegram mini app). The lite version.",
"license": "AGPL-3.0 license",
"private": false,
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint --ext .ts .",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"build": "nest build",
"prestart": "npm run lint && npm run build",
"start": "node dist/app",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"test": "vitest run --exclude **/e2e/**/*.ts",
"test:e2e": "vitest run --config ./test/vitest.e2e.ts",
"postinstall": "npx prisma generate"
},
"dependencies": {
"@fastify/compress": "^7.0.3",
"@fastify/cookie": "^9.3.1",
"@fastify/helmet": "^11.1.1",
"@fastify/passport": "^2.4.0",
"@fastify/session": "^10.9.0",
"@fastify/static": "^7.0.4",
"@nestjs/common": "^10.3.8",
"@nestjs/config": "3.2.2",
"@nestjs/core": "^10.3.8",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-fastify": "^10.3.8",
"@nestjs/serve-static": "^4.0.2",
"@prisma/adapter-pg": "^5.17.0",
"@prisma/client": "^5.17.0",
"@telegraf/session": "^2.0.0-beta.7",
"axios": "^1.7.7",
"better-sqlite3": "^9.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"date-fns": "^3.6.0",
"kysely": "^0.27.2",
"module-alias": "^2.2.3",
"nest-winston": "^1.9.7",
"nestjs-i18n": "^10.4.5",
"nestjs-pino": "^4.1.0",
"nestjs-prisma": "^0.23.0",
"nestjs-telegraf": "^2.8.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pg": "^8.12.0",
"pino": "^9.1.0",
"pino-http": "^10.1.0",
"prisma-extension-cuid2": "^1.1.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"telegraf": "^4.16.3",
"winston": "^3.16.0"
},
"devDependencies": {
"@nestjs/cli": "^10.3.2",
"@nestjs/testing": "^10.3.8",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.7",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20.12.12",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-vitest": "^0.4.1",
"pino-pretty": "^11.1.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.0.0",
"prisma": "^5.17.0",
"supertest": "^7.0.0",
"typescript": "~5.4.5",
"unplugin-swc": "^1.4.5",
"vitest": "^1.6.0",
"vitest-mock-extended": "^1.3.1"
},
"_moduleAliases": {
"@app/*": "./src/*"
}
}