This repository was archived by the owner on Apr 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.95 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.95 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
{
"name": "slanger-backend",
"version": "1.0.0",
"description": "Бэкенд для мини-приложения «Slanger»",
"author": "ItzNeviKat",
"private": true,
"license": "UNLICENSED",
"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_ENV=production node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@nestjs/axios": "^0.0.1",
"@nestjs/common": "^8.0.0",
"@nestjs/config": "^1.0.1",
"@nestjs/core": "^8.0.0",
"@nestjs/platform-fastify": "^8.0.6",
"@nestjs/schedule": "^1.0.1",
"@nestjs/swagger": "^5.0.9",
"@nestjs/throttler": "^2.0.0",
"@nestjs/typeorm": "^8.0.2",
"@types/cache-manager-redis-store": "^2.0.0",
"axios": "^0.21.1",
"cache-manager": "^3.4.4",
"cache-manager-redis-store": "^2.0.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"common-tags": "^1.8.0",
"date-fns": "^2.23.0",
"fastify": "^3.20.2",
"fastify-swagger": "^4.9.1",
"meilisearch": "^0.22.0",
"nestjs-meilisearch": "^2.1.1",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"typeorm": "^0.2.37",
"vk-io": "^4.4.0"
},
"devDependencies": {
"@nestjs/cli": "^8.0.0",
"@nestjs/schematics": "^8.0.0",
"@types/cache-manager": "^3.4.2",
"@types/common-tags": "^1.8.1",
"@types/cron": "^1.7.3",
"@types/node": "^16.7.6",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "4.4.2"
}
}