-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.85 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
{
"name": "discord-norsk-bott",
"private": true,
"packageManager": "[email protected]",
"bin": "main.js",
"type": "module",
"scripts": {
"build": "yarn codegen && nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "yarn codegen && nest start",
"start:dev": "yarn codegen && nest start --watch",
"start:debug": "yarn codegen && nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"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 ./test/jest-e2e.json",
"codegen": "graphql-codegen --config codegen.ts"
},
"dependencies": {
"@discord-nestjs/common": "^5.2.12",
"@discord-nestjs/core": "^5.3.14",
"@graphql-typed-document-node/core": "^3.2.0",
"@nestjs/common": "^10.3.10",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.3.10",
"@notionhq/client": "^2.2.15",
"deepl-node": "^1.13.0",
"discord.js": "^14.15.3",
"discourser": "patch:discourser@npm%3A2.1.0#~/.yarn/patches/discourser-npm-2.1.0-37d7eb7aeb.patch",
"fast-levenshtein": "^3.0.0",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"notion-to-md": "^3.1.1",
"openai": "^4.52.7",
"p-limit": "^6.1.0",
"posthog-node": "^4.0.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"yaml": "^2.4.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.2",
"@nestjs/cli": "^10.4.2",
"@nestjs/schematics": "^10.1.2",
"@nestjs/testing": "^10.3.10",
"@types/fast-levenshtein": "^0.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"volta": {
"node": "22.9.0",
"yarn": "4.5.0"
},
"engines": {
"node": ">=22.5.1",
"yarn": ">=4.3.1"
}
}