-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.37 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
{
"name": "nestjs-project-performance",
"version": "0.0.0",
"description": "Node.js framework NestJS project for performance",
"license": "MIT",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint --ext .ts .",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"build": "nest build",
"prestart": "npm run lint && npm run build",
"start": "node dist/app",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"test": "vitest run --exclude **/e2e/**/*.ts",
"test:e2e": "vitest run --config ./test/vitest.e2e.ts",
"postinstall": "npx prisma generate"
},
"dependencies": {
"@fastify/compress": "^7.0.3",
"@fastify/cookie": "^9.4.0",
"@fastify/helmet": "^11.1.1",
"@fastify/passport": "^2.5.0",
"@fastify/session": "^10.9.0",
"@fastify/static": "^7.0.4",
"@nestjs/common": "^10.4.8",
"@nestjs/config": "3.3.0",
"@nestjs/core": "^10.4.8",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-fastify": "^10.4.8",
"@nestjs/serve-static": "^4.0.2",
"@prisma/client": "^5.22.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"nestjs-pino": "^4.1.0",
"nestjs-prisma": "^0.23.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^10.4.8",
"@nestjs/testing": "^10.4.8",
"@swc/cli": "^0.5.1",
"@swc/core": "^1.9.2",
"@types/node": "^20.17.6",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-vitest": "^0.5.4",
"pino-pretty": "^13.0.0",
"prettier": "^3.3.3",
"prisma": "^5.22.0",
"supertest": "^7.0.0",
"typescript": "~5.5.4",
"unplugin-swc": "^1.5.1",
"vitest": "^2.1.5",
"vitest-mock-extended": "^2.0.2"
}
}