-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
113 lines (113 loc) · 3.34 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
{
"name": "service-hub",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"engineStrict": true,
"engines": {
"node": ">=20"
},
"scripts": {
"build:example": "nest build example",
"start:example:dev": "nest start example --watch --debug 5495",
"start:example:prod": "node dist/services/example/main",
"start:example": "nest start example --watch",
"build:bots": "nest build bots",
"start:bots:dev": "nest start bots --watch --debug 5496",
"start:bots:prod": "node dist/services/bots/main",
"start:bots": "nest start bots --watch",
"format": "prettier --write \"services/**/*.ts\" \"libs/**/*.ts\"",
"lint": "eslint \"{src,services,libs,test}/**/*.ts\" --fix",
"prebuild": "rimraf dist",
"test": "jest",
"test-watch": "jest --watch"
},
"dependencies": {
"@dev-thought/nestjs-github-webhooks": "^1.0.0",
"@discord-nestjs/common": "^5.2.10",
"@discord-nestjs/core": "^5.3.12",
"@nestjs/common": "^8.4.4",
"@nestjs/config": "^2.0.0",
"@nestjs/core": "^8.4.4",
"@nestjs/event-emitter": "^1.1.0",
"@nestjs/graphql": "^10.0.10",
"@nestjs/passport": "^8.2.1",
"@nestjs/platform-express": "^8.4.4",
"@nestjs/platform-ws": "^8.4.4",
"@nestjs/schedule": "^2.1.0",
"@nestjs/websockets": "^8.4.4",
"@octokit/auth-app": "^4.0.6",
"@octokit/rest": "^19.0.4",
"@octokit/webhooks": "^10.1.5",
"@octokit/webhooks-types": "^6.4.0",
"@sentry/integrations": "^7.14.1",
"@sentry/node": "^7.14.1",
"apollo-server-express": "^3.6.7",
"aws-sdk": "^2.1211.0",
"codeowners-utils": "^1.0.2",
"convict": "^6.2.3",
"discord.js": "^14.3.0",
"find-up": "^4.0.0",
"graphql": "^16.6.0",
"js-yaml": "^4.1.0",
"nestjs-pino": "^3.1.1",
"pino": "^8.4.2",
"pino-http": "^7.0.0",
"pino-pretty": "^9.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"ts-morph": "^16.0.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@nestjs/cli": "^8.2.5",
"@nestjs/schematics": "^8.0.10",
"@nestjs/testing": "^8.4.4",
"@types/jest": "^29.2.0",
"@types/js-yaml": "^4",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"deepmerge": "^4.2.2",
"eslint": "8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.2.1",
"prettier": "^2.6.2",
"sinon": "^14.0.1",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.3",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.8.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!p-timeout).+\\.(t|j)s$"
],
"testEnvironment": "node",
"roots": [
"<rootDir>/tests/"
],
"moduleNameMapper": {
"@lib/common/(.*)": "<rootDir>/libs/common/src/$1",
"@lib/common": "<rootDir>/libs/common/src",
"@lib/health/(.*)": "<rootDir>/libs/health/src/$1",
"@lib/health": "<rootDir>/libs/health/src",
"@lib/sentry/(.*)": "<rootDir>/libs/sentry/src/$1",
"@lib/sentry": "<rootDir>/libs/sentry/src"
}
}
}