-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.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
{
"name": "qa-ai-service",
"version": "0.0.1",
"license": "MIT",
"author": "rarcifa",
"main": "index.js",
"type": "module",
"imports": {
"#src/*": "./dist/*"
},
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node dist",
"migrate": "cross-env NODE_ENV=development && tsc && npx sequelize-cli db:migrate",
"migrate-test": "tsc && npx sequelize-cli db:migrate --env test",
"dev": "nodemon --watch src -e ts --exec npm run start",
"test": "jest --runInBand --coverage"
},
"dependencies": {
"@langchain/community": "^0.0.16",
"@langchain/openai": "0.0.9",
"@types/axios": "0.14.0",
"@types/uuid": "9.0.3",
"axios": "1.6.2",
"bcrypt": "5.1.0",
"body-parser": "1.20.2",
"cors": "2.8.5",
"cross-env": "7.0.3",
"dotenv": "16.0.0",
"express": "4.18.2",
"express-validator": "6.14.0",
"hnswlib-node": "1.4.2",
"jsonwebtoken": "9.0.1",
"langchain": "0.1.2",
"lodash": "4.17.21",
"mysql2": "^3.6.5",
"node-cron": "^3.0.3",
"openai": "^4.21.0",
"pg": "8.11.3",
"readable-stream": "4.5.2",
"sequelize": "6.32.1",
"sequelize-typescript": "2.1.6",
"uuid": "9.0.1",
"winston": "3.10.0"
},
"devDependencies": {
"@jest/globals": "27.4.6",
"@types/bcrypt": "5.0.0",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/express-validator": "3.0.0",
"@types/jest": "27.0.3",
"@types/jsonwebtoken": "9.0.2",
"@types/lodash": "4.14.181",
"@types/module-alias": "2.0.1",
"@types/node": "20.4.10",
"@types/node-cron": "^3.0.11",
"@types/node-fetch": "2.6.4",
"@types/validator": "13.7.2",
"jest": "27.4.7",
"jest-ts-auto-mock": "2.0.0",
"nodemon": "^3.0.2",
"prettier": "2.5.1",
"ts-auto-mock": "3.5.0",
"ts-jest": "27.1.3",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.8.4"
}
}