-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.06 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "todogebi",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.ts\"",
"start": "nest start",
"generate:graphql": "graphql-codegen",
"start:user:dev": "nest start user --watch",
"start:auth:dev": "nest start auth --watch",
"start:project:dev": "nest start project --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/apps/todogebi/main",
"proto:gen": "protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./libs/grpc/src --ts_proto_opt=nestJs=true ./proto/*.proto",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --config ./apps/project/test/jest-e2e.json",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./apps/project/test/jest-e2e.json --runInBand"
},
"dependencies": {
"@apollo/server": "^4.11.0",
"@grpc/grpc-js": "^1.12.5",
"@grpc/proto-loader": "^0.7.13",
"@nestjs/apollo": "^12.2.0",
"@nestjs/axios": "^3.0.3",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.0.0",
"@nestjs/cqrs": "^10.2.7",
"@nestjs/graphql": "^12.2.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/microservices": "^10.4.15",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/schedule": "^4.1.1",
"@prisma/client": "^6.2.1",
"@slack/socket-mode": "^2.0.1",
"@slack/web-api": "^7.5.0",
"@types/graphql": "^14.2.3",
"axios": "^1.7.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.7",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"lib": "^5.1.0",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"nest-winston": "^1.9.7",
"prettier-plugin-sort-imports": "^1.8.6",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1",
"type-graphql": "^2.0.0-rc.2",
"uuid": "^10.0.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript": "^4.1.2",
"@graphql-codegen/typescript-generic-sdk": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.4.0",
"@graphql-codegen/typescript-resolvers": "^4.4.1",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.17.15",
"@types/luxon": "^3.4.2",
"@types/node": "^20.3.1",
"@types/supertest": "^6.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"prisma": "^6.2.1",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"ts-proto": "^2.6.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"roots": [
"<rootDir>/src",
"<rootDir>/test",
"<rootDir>/libs/",
"<rootDir>/apps/"
],
"testRegex": ".*\\.(spec|e2e-spec)\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^libs/decorators(|/.*)$": "<rootDir>/libs/decorators/src/$1",
"^libs/common(|/.*)$": "<rootDir>/libs/common/src/$1",
"^@libs/test(|/.*)$": "<rootDir>/libs/test/src/$1",
"^@libs/grpc(|/.*)$": "<rootDir>/libs/grpc/src/$1"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}