-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.98 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
{
"name": "ai24support-openai-pinecone-rag",
"version": "1.0.0",
"description": "POC app for automating customer support service using RAG architecture (OpenAI Embeddings & Chat Completion API, Pinecone vector DB)",
"main": "index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"start:local": "ts-node ./src/index.ts",
"start": "node dist/src/index.js",
"watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' ./src/index.ts",
"test": "echo tests - TODO",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"postinstall": "npm run build"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/hapi__joi": "^17.1.9",
"@types/jest": "^28.1.5",
"@types/node": "^18.0.3",
"@types/pino": "<7.0.0",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.2",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@pinecone-database/pinecone": "^0.1.6",
"@types/morgan": "^1.9.4",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"morgan": "^1.10.0",
"nock": "^13.2.8",
"pg": "^8.11.2",
"pino": "<7.0.0",
"pino-pretty": "^10.2.0",
"sequelize": "^6.32.1",
"sequelize-typescript": "^2.1.5",
"uuid": "^9.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged",
"pre-push": "npm run lint"
}
},
"author": "",
"license": "ISC",
"engines": {
"node": "18.x"
}
}