-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
132 lines (132 loc) · 4.01 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
127
128
129
130
131
132
{
"name": "vgmq-api",
"version": "0.31.0",
"description": "",
"author": "",
"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": "npx pm2 start dist/src/main.js -i max",
"stop:prod": "npx pm2 stop all",
"lint": "eslint . --ignore-path .gitignore --fix & npm run format",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"typeorm": "typeorm-ts-node-commonjs -d ormconfig.ts",
"populate-elasticsearch": "node dist/src/populate-elasticsearch",
"generate-albums": "node dist/src/generate-albums",
"files:s3": "node dist/src/move-files-to-s3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.496.0",
"@aws-sdk/s3-request-presigner": "^3.496.0",
"@aws-sdk/types": "^3.496.0",
"@elastic/elasticsearch": "^8.2.1",
"@googleapis/youtube": "^8.0.1",
"@nestjs-modules/mailer": "^1.10.3",
"@nestjs/axios": "^3.0.2",
"@nestjs/bull": "^10.1.1",
"@nestjs/common": "^10.3.10",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.3.10",
"@nestjs/elasticsearch": "^10.0.1",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.10",
"@nestjs/platform-socket.io": "^10.3.10",
"@nestjs/swagger": "^7.4.0",
"@nestjs/typeorm": "^10.0.2",
"@nestjs/websockets": "^10.3.10",
"@socket.io/redis-adapter": "^8.2.1",
"axios": "1.6.7",
"bcrypt": "^5.0.1",
"bull": "^3.29.3",
"cache-manager": "^3.6.0",
"check-disk-space": "^3.3.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.5",
"dayjs": "^1.11.2",
"dotenv": "^16.0.0",
"form-data": "^4.0.0",
"handlebars": "^4.7.7",
"joi": "^17.4.1",
"luxon": "^3.3.0",
"mime-types": "^2.1.35",
"music-metadata": "^10.0.0",
"mysql2": "^3.10.2",
"node-vibrant": "^3.2.1-alpha.1",
"nodemailer": "^6.7.5",
"passport": "0.6.0",
"passport-jwt": "^4.0.0",
"redis": "^4.3.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"slugify": "^1.6.0",
"socket.io": "^4.4.1",
"typedi": "^0.10.0",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@nestjs/cli": "^10.3.0",
"@nestjs/schematics": "^10.1.0",
"@nestjs/testing": "^10.3.1",
"@types/bcrypt": "^5.0.0",
"@types/bull": "^3.15.8",
"@types/cache-manager": "^3.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/inline-css": "^3.0.1",
"@types/jest": "^26.0.20",
"@types/luxon": "^3.2.0",
"@types/mime-types": "^2.1.4",
"@types/multer": "^1.4.7",
"@types/node": "^20.11.16",
"@types/nodemailer": "^6.4.4",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^26.6.3",
"pm2": "^5.2.0",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}