-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.22 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
{
"name": "rigtch-fm-api",
"version": "0.0.1",
"description": "",
"author": "Rigtch",
"license": "Apache License 2.0",
"engines": {
"node": ">=20.0.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"bun": "please-use-pnpm",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"vercel-build": "nest build",
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"docker:dev": "docker-compose up",
"docker:build": "docker-compose up --build -V",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli",
"schema:sync": "pnpm run typeorm schema:sync -d ./dist/config/database/typeorm.config.js",
"migration:run": "pnpm run typeorm migration:run -d ./dist/config/database/typeorm.config.js",
"migration:generate": "pnpm run typeorm migration:generate -d ./dist/config/database/typeorm.config.js ./src/migrations/$NAME",
"migration:create": "pnpm run typeorm migration:create ./src/migrations/$NAME",
"migration:revert": "pnpm run typeorm migration:revert -d ./src/config/database/typeorm.config.ts",
"prepare": "husky",
"commit": "cz"
},
"sideEffects": false,
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@bull-board/api": "^5.21.1",
"@bull-board/express": "^5.21.1",
"@bull-board/nestjs": "^5.21.1",
"@nestjs/axios": "3.0.3",
"@nestjs/bullmq": "^10.2.0",
"@nestjs/cache-manager": "^2.2.2",
"@nestjs/common": "^10.3.10",
"@nestjs/config": "3.2.3",
"@nestjs/core": "^10.3.10",
"@nestjs/platform-express": "^10.3.10",
"@nestjs/swagger": "7.4.2",
"@nestjs/typeorm": "10.0.2",
"@spotify/web-api-ts-sdk": "1.2.0",
"@vitest/coverage-v8": "2.1.1",
"axios": "1.7.7",
"bullmq": "^5.10.4",
"cache-manager": "^5.6.1",
"cache-manager-ioredis-yet": "^2.1.1",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"cookie-parser": "1.4.6",
"cron": "3.1.7",
"dotenv": "^16.4.7",
"exponential-backoff": "3.1.1",
"ioredis": "^5.4.1",
"lodash": "^4.17.21",
"ms": "2.1.3",
"nestjs-paginate": "^9.0.0",
"pg": "8.12.0",
"reflect-metadata": "0.2.2",
"rxjs": "^7.8.1",
"typeorm": "0.3.20",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@nestjs/cli": "^10.4.0",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.9",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.28",
"@trilon/eslint-plugin": "^0.2.1",
"@types/cookie-parser": "1.4.7",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.6",
"@types/ms": "^0.7.34",
"@types/node": "20.14.14",
"@types/passport-jwt": "4.0.1",
"@types/passport-spotify": "2.0.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"commitizen": "^4.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-nestjs": "^1.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sonarjs": "^2.0.0",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-vitest": "0.3.20",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"tsconfig-paths": "4.2.0",
"typescript": "^5.3.3",
"unplugin-swc": "1.5.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.1.1",
"vitest-mock-extended": "2.0.2"
}
}