-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 3.97 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
{
"name": "ai_tools",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "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",
"start:migrate:prod": "npx prisma migrate deploy && npm run start:prod",
"start:migrate:ci": "npx prisma migrate deploy && npm run start:prod",
"cli": "ts-node src/cli.ts",
"codecov": "codecov"
},
"dependencies": {
"@apollo/client": "^3.7.11",
"@axiomhq/axiom-node": "^0.12.0",
"@clack/prompts": "^0.6.3",
"@fastify/compress": "5.0.0",
"@fastify/helmet": "8.0.0",
"@fastify/multipart": "6.0.0",
"@fastify/static": "5.0.0",
"@nestjs/axios": "^3.0.1",
"@nestjs/cache-manager": "^2.1.0",
"@nestjs/common": "8.0.0",
"@nestjs/config": "1.1.6",
"@nestjs/core": "8.0.7",
"@nestjs/microservices": "8.4.4",
"@nestjs/platform-express": "^10.3.3",
"@nestjs/platform-fastify": "8.2.6",
"@nestjs/testing": "8.0.0",
"@prisma/client": "^4.12.0",
"@types/multer": "^1.4.7",
"@types/node-fetch": "^2.6.4",
"@willsoto/nestjs-prometheus": "^5.2.1",
"apollo-cache-inmemory": "^1.6.6",
"cache-manager": "^4.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"codecov": "^3.8.3",
"csv-parser": "^3.0.0",
"fastify-compress": "^4.1.0",
"fastify-helmet": "^7.1.0",
"fastify-multer": "^2.0.3",
"fastify-multipart": "^5.4.0",
"fastify-static": "^4.7.0",
"ffmpeg-static": "^5.2.0",
"flagsmith-nodejs": "^2.5.2",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^11.1.1",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"handlebars": "^4.7.8",
"isomorphic-fetch": "^3.0.0",
"jest-mock-extended": "^3.0.4",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"locate-chrome": "^0.1.1",
"microsoft-cognitiveservices-speech-sdk": "^1.34.0",
"minio": "^7.1.2",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"multer": "^1.4.5-lts.1",
"node-fetch": "2",
"nodemailer": "^6.9.1",
"openai": "^4.20.1",
"pdf-parse": "^1.1.1",
"pdfkit": "^0.13.0",
"posthog-node": "^2.6.0",
"prom-client": "^14.2.0",
"prompt-engine": "^0.0.31",
"puppeteer": "^21.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0",
"sanitize-html": "^2.3.2",
"wrap-ansi": "6.2.0",
"winston": "^3.8.2",
"xstate": "^4.37.2"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@types/express": "^4.17.17",
"@types/jest": "29.2.4",
"@types/node": "18.11.18",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.3.1",
"prettier": "^2.3.2",
"prisma": "^4.12.0",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "29.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.1.1",
"typescript": "^4.7.4",
"webpack": "^5.78.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"coverageReporters": [
"text",
"lcov"
]
}
}