-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.05 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
{
"name": "thrall",
"version": "0.0.1",
"description": "Back-end application from dev-xperience",
"author": "Bruno Silveira Luiz",
"private": true,
"bin": "build/src/main.js",
"license": "MIT",
"scripts": {
"prebuild": "rimraf build",
"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 build/src/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --inspect --logHeapUsage --threads=false",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts"
},
"prisma": {
"seed": "tsx prisma/seed/index.ts"
},
"pkg": {
"scripts": "build/**/*.js",
"assets": [
"build/**/*",
"**/*.lua",
"../node_modules/bull/lib/commands/*.lua",
"./node_modules/bull/lib/commands/*.lua",
"node_modules/.prisma/client/*.node",
"node_modules/.prisma/client/index.js"
],
"targets": [
"node18"
]
},
"dependencies": {
"@faker-js/faker": "8.0.2",
"@nestjs/bull": "10.0.1",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "3.1.1",
"@nestjs/core": "^10.0.0",
"@nestjs/event-emitter": "2.0.2",
"@nestjs/jwt": "10.1.0",
"@nestjs/mapped-types": "*",
"@nestjs/passport": "10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/platform-socket.io": "10.2.6",
"@nestjs/platform-ws": "10.2.6",
"@nestjs/websockets": "10.2.6",
"@prisma/client": "5.5.2",
"bull": "4.11.3",
"dayjs": "1.11.10",
"dotenv": "^16.3.1",
"nestjs-pino": "3.4.0",
"nestjs-prisma": "0.22.0",
"passport": "0.6.0",
"passport-jwt": "4.0.1",
"reflect-metadata": "^0.1.13",
"rimraf": "5.0.1",
"rxjs": "^7.8.1",
"socket.io": "4.7.2",
"zod": "3.21.4",
"zod-validation-error": "1.5.0"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@swc/core": "1.3.91",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"@types/passport-jwt": "3.0.9",
"@types/pg": "^8.10.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitest/coverage-v8": "0.34.6",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import-helpers": "1.3.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "8.0.3",
"pino-pretty": "10.2.0",
"prettier": "^2.8.8",
"prisma": "5.5.2",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsc-alias": "1.8.8",
"tsx": "3.14.0",
"typescript": "^5.1.3",
"unplugin-swc": "1.4.2",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6"
}
}