This repository was archived by the owner on Aug 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.3 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.3 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
89
90
91
92
{
"name": "streamify-backend",
"version": "0.0.0",
"description": "nestjs backend for youtube clone like video streaming",
"author": "simylein",
"private": true,
"license": "simylein",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src\"",
"lint": "eslint \"src\" --fix",
"start": "nest start",
"start:dev": "nest start --watch",
"start:prod": "node dist/src/main",
"test": "jest --verbose --coverage",
"test:dev": "jest --watch --verbose --maxWorkers=1"
},
"dependencies": {
"@nestjs/common": "9.2.1",
"@nestjs/core": "9.2.1",
"@nestjs/jwt": "9.0.0",
"@nestjs/passport": "9.0.0",
"@nestjs/platform-express": "9.2.1",
"@nestjs/schedule": "2.1.0",
"@nestjs/swagger": "6.1.4",
"@nestjs/terminus": "9.1.4",
"@nestjs/throttler": "3.1.0",
"@nestjs/typeorm": "9.0.1",
"axios": "1.1.3",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"compression": "1.7.4",
"express": "4.18.2",
"helmet": "6.0.1",
"joi": "17.7.0",
"mysql2": "2.3.3",
"passport": "0.6.0",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"rimraf": "3.0.2",
"rxjs": "7.6.0",
"swagger-ui-express": "4.6.0",
"typeorm": "0.3.11"
},
"devDependencies": {
"@nestjs/cli": "9.1.5",
"@nestjs/schematics": "9.0.3",
"@nestjs/testing": "9.2.1",
"@types/compression": "1.7.2",
"@types/cron": "2.0.0",
"@types/express": "4.17.14",
"@types/jest": "29.2.3",
"@types/node": "18.7.23",
"@types/passport-jwt": "3.0.7",
"@types/passport-local": "1.0.34",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin": "1.0.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unused-imports": "2.0.0",
"jest": "29.3.1",
"prettier": "2.7.1",
"reflect-metadata": "0.1.13",
"ts-jest": "29.0.3",
"ts-loader": "9.4.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "4.9.3",
"webpack": "5.75.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}