-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.64 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
{
"name": "clean-architecture-with-typescript",
"version": "1.0.0",
"description": "Template for a clean architecture project with typescript",
"keywords": [
"clean",
"architecture",
"typescript",
"node"
],
"author": {
"name": "Arthur Reis",
"email": "arthurreis074@gmail.com",
"url": "https://arthurreis.dev"
},
"license": "MIT",
"scripts": {
"husky:install": "husky install",
"start": "npm run prisma:migrate && node dist/main.js",
"start:dev": "nest start --watch",
"build:swc:watch": "npx swc --out-dir dist -w src",
"build:swc": "npx swc --out-dir dist src",
"start:swc": "nodemon dist/main",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:unit": "jest --testPathPattern=\".spec.ts$\"",
"test:integration": "jest --testPathPattern=\".test.ts$\"",
"test:e2e": "jest --config ./jest-e2e.config.js",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy --preview-feature"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@prisma/migrate": "^4.11.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.42",
"@swc/jest": "^0.2.24",
"@types/express": "^4.17.17",
"@types/jaeger-client": "^3.18.4",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-plugin-check-file": "^2.1.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prisma": "^4.11.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@nestjs/common": "^9.3.12",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.3.12",
"@nestjs/platform-express": "^9.3.12",
"@nestjs/swagger": "^6.2.1",
"@nestjs/terminus": "^9.2.1",
"@prisma/client": "^4.11.0",
"@sentry/node": "^7.45.0",
"cache-manager": "^5.2.0",
"cache-manager-redis-yet": "^4.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"date-fns": "^2.29.3",
"jaeger-client": "^3.19.0",
"purify-ts": "^2.0.0",
"redis": "^4.6.5",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"ts-jest": "^29.0.5",
"yup": "^1.0.2"
}
}