-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.8 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
{
"name": "ddd-study",
"description": "A forum app made for practicing Domain-driven Design (DDD) concepts.",
"main": "src/index.ts",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "nest build",
"check-spell": "cspell \"src/**/*.{ts,tsx}\" --no-must-find-files --gitignore --unique --no-progress",
"check-types": "tsc --noEmit",
"commitlint": "commitlint --edit",
"db:migrate:dev": "prisma migrate dev",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"lint": "eslint --max-warnings 0",
"lint:fix": "eslint --fix",
"lint-staged": "lint-staged --concurrent false",
"prepare": "husky install",
"prettify": "prettier --write --ignore-unknown",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"start:dev": "nest start --watch",
"start:prod": "node dist/main",
"test": "vitest run",
"test:cov": "yarn test --coverage",
"test:e2e": "yarn test --config ./vitest.config.e2e.ts",
"test:e2e:watch": "vitest --config ./vitest.config.e2e.ts",
"test:ui": "vitest --ui",
"test:watch": "vitest"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.474.0",
"@nestjs/common": "^10.2.10",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.2.1",
"@nestjs/jwt": "^10.1.0",
"@nestjs/passport": "^10.0.1",
"@nestjs/platform-express": "^10.2.1",
"@prisma/client": "^5.2.0",
"@types/bcryptjs": "^2.4.2",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dayjs": "^1.11.9",
"helmet": "^7.0.0",
"ioredis": "^5.3.2",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@cspell/dict-pt-br": "^2.1.4",
"@faker-js/faker": "^8.0.2",
"@nestjs/cli": "^10.1.16",
"@nestjs/schematics": "^10.0.2",
"@nestjs/testing": "^10.2.1",
"@rdgomt/eslint-config": "^1.7.0",
"@swc/core": "^1.3.80",
"@total-typescript/ts-reset": "^0.4.2",
"@types/multer": "^1.4.11",
"@types/node": "^20.3.3",
"@types/passport-jwt": "^3.0.9",
"@types/supertest": "^2.0.12",
"@vitest/coverage-v8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"cspell": "^6.31.1",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"eslint-plugin-boundaries": "^3.1.1",
"eslint-plugin-perfectionist": "^1.5.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"prisma": "^5.2.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"unplugin-swc": "^1.3.2",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0"
}
}