-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.94 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.94 KB
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
{
"name": "rigtch-fm-ai-bot",
"version": "0.0.1",
"description": "",
"author": "Rigtch",
"license": "Apache License 2.0",
"engines": {
"node": ">=20.0.0",
"npm": "please-use-bun",
"yarn": "please-use-bun",
"bun": ">=1.1.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "bun dist/main.js",
"lint": "bun run lint:js && bun run format && bun run typecheck",
"lint:js": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "bun run lint:js --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"prepare": "husky",
"commit": "cz"
},
"sideEffects": false,
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@discord-nestjs/core": "^5.3.14",
"@langchain/community": "^0.2.23",
"@langchain/core": "^0.2.20",
"@langchain/openai": "^0.2.5",
"@nestjs/common": "^10.3.10",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.3.10",
"@nestjs/platform-express": "^10.3.10",
"@nestjs/swagger": "^7.4.0",
"@nestjs/typeorm": "^10.0.2",
"axios": "^1.7.3",
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.15.3",
"langchain": "^0.2.12",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"typeorm": "^0.3.20",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@nestjs/cli": "^10.4.2",
"@nestjs/schematics": "^10.1.3",
"@nestjs/testing": "^10.3.10",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.6",
"@trilon/eslint-plugin": "^0.2.1",
"@types/express": "^4.17.21",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.5",
"commitizen": "^4.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-nestjs": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-vitest": "0.3.20",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4",
"unplugin-swc": "1.5.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.0.5",
"vitest-mock-extended": "2.0.0"
}
}