-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
154 lines (154 loc) · 4.73 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "backend-nest",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build && cp -r prisma dist && copyfiles -u 1 src/**/*.csv dist/",
"start:prod": "prisma generate --schema=dist/prisma/schema.prisma && node dist/main",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint2": "eslint . --ext .ts,.tsx --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"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-bedrock-runtime": "^3.596.0",
"@aws-sdk/credential-provider-node": "^3.596.0",
"@aws-sdk/types": "^3.577.0",
"@brillout/import": "^0.2.3",
"@complycube/api": "^1.1.10",
"@ethersproject/providers": "^5.7.2",
"@google-analytics/data": "^4.7.0",
"@google-cloud/local-auth": "^2.1.1",
"@google-cloud/storage": "^6.12.0",
"@jridgewell/sourcemap-codec": "^1.4.15",
"@langchain/community": "^0.0.40",
"@langchain/openai": "^0.0.20",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.3.9",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mapped-types": "^2.0.5",
"@nestjs/passport": "^10.0.0",
"@nestjs/platform-express": "^10.3.9",
"@nestjs/schedule": "^3.0.0",
"@nestjs/swagger": "^7.3.1",
"@pinecone-database/pinecone": "^0.0.10",
"@prisma/client": "^4.16.2",
"@sendgrid/mail": "^8.1.3",
"@smithy/eventstream-codec": "^2.2.0",
"@smithy/protocol-http": "^3.3.0",
"@smithy/signature-v4": "^2.3.0",
"@smithy/util-utf8": "^2.3.0",
"@vonage/jwt": "^1.10.0",
"@vonage/server-sdk": "^3.14.1",
"aws-sdk": "^2.1641.0",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"cheerio": "^1.0.0-rc.12",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"csv-parser": "^3.0.0",
"d3-dsv": "^2.0.0",
"date-fns": "^2.30.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"ethers": "^5.7.2",
"express-session": "^1.18.0",
"fast-csv": "^4.3.6",
"form-data": "^4.0.0",
"googleapis": "^126.0.1",
"langchain": "^0.1.37",
"linkify-it": "^4.0.1",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"natural": "^6.12.0",
"nestjs-form-data": "^1.9.7",
"node-pty": "1.0.0",
"node-vault-client": "^0.6.1",
"openai": "^3.3.0",
"papaparse": "^5.4.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"pdf-parse": "^1.1.1",
"pdfjs-dist": "^4.3.136",
"qrcode": "^1.5.3",
"qs": "^6.12.1",
"reflect-metadata": "^0.1.14",
"rxjs": "^7.8.1",
"simple-crypto-js": "^3.0.1",
"speakeasy": "^2.0.0",
"streamifier": "^0.1.1",
"swagger-ui-express": "^4.6.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@nestjs/cli": "^9.5.0",
"@nestjs/schematics": "^9.2.0",
"@nestjs/testing": "^10.3.9",
"@types/cron": "^2.4.0",
"@types/express": "^4.17.21",
"@types/jest": "29.2.4",
"@types/multer": "^1.4.11",
"@types/node": "18.11.18",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-jwt": "^3.0.13",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"copyfiles": "^2.4.1",
"cron": "^3.1.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-no-secrets": "^1.0.2",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-pii": "^1.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^3.0.0",
"eslint-plugin-xss": "^0.1.12",
"gdoctableapp": "^1.1.0",
"git-commit-msg-linter": "^4.11.1",
"husky": "^8.0.3",
"jest": "29.3.1",
"prettier": "^2.8.8",
"prisma": "^4.16.2",
"source-map-support": "^0.5.21",
"supertest": "^6.3.4",
"ts-jest": "29.0.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "4.1.1",
"typescript": "^4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}