forked from ChatWithPDF/bff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.69 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
{
"name": "bff",
"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": "export RUN_MANUAL_TEST=false && jest",
"test-manual": "export RUN_MANUAL_TEST=true && jest",
"test:watch": "export RUN_MANUAL_TEST=false && jest --watch",
"test:cov": "export RUN_MANUAL_TEST=false && jest --coverage",
"test:debug": "export RUN_MANUAL_TEST=false && node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "export RUN_MANUAL_TEST=false && 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"
},
"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/common": "8.0.0",
"@nestjs/config": "1.1.6",
"@nestjs/core": "8.0.7",
"@nestjs/microservices": "8.4.4",
"@nestjs/platform-express": "^10.1.2",
"@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",
"apollo-cache-inmemory": "^1.6.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"codecov": "^3.8.3",
"compute-cosine-similarity": "^1.0.0",
"csv-parser": "^3.0.0",
"exceljs": "^4.3.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",
"flagsmith-nodejs": "^2.5.2",
"fluent-ffmpeg": "^2.1.2",
"isomorphic-fetch": "^3.0.0",
"jest-mock-extended": "^3.0.4",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"multer": "^1.4.5-lts.1",
"node-fetch": "2",
"nodemailer": "^6.9.1",
"papaparse": "^5.4.1",
"pdf-parse": "^1.1.1",
"pdfreader": "^3.0.0",
"posthog-node": "^2.6.0",
"prompt-engine": "^0.0.31",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.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"
]
}
}