-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
102 lines (102 loc) · 2.57 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
{
"name": "@webeleon/nestjs-openai",
"version": "0.5.2",
"description": "An openAi API client for nestjs",
"author": "webeleon<julien@webeleon.dev>",
"private": false,
"license": "lgpl-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Webeleon/nestjs-openai"
},
"bugs": {
"url": "https://github.com/Webeleon/nestjs-openai/issues"
},
"contributors": [
{
"name": "Julien Prugne",
"email": "julien@webeleon.dev"
}
],
"keywords": [
"webeleon",
"npm",
"typescript",
"NestJS",
"openAI",
"chatGPT"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"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",
"prepare": "husky install",
"release": "standard-version",
"doc:generate": "typedoc"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"openai": "^4.0.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.2.0",
"standard-version": "^9.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/express": "^4.17.13",
"@types/jest": "29.5.14",
"@types/node": "18.19.74",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"lint-staged": "^14.0.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.20",
"ts-jest": "29.2.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.2.0",
"typedoc": "^0.27.0",
"typescript": "^5.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"./src/**/*.ts"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"coverageDirectory": "./coverage",
"collectCoverage": true
},
"lint-staged": {
"*.ts": "prettier --write"
}
}