-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.34 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
{
"name": "ai-db",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:cocomatias/ai-db.git",
"author": "cocomatias <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register --ignore 'hnswlib-vs-*' src/index.ts",
"dev:verbose": "VERBOSE=true yarn dev",
"start": "ts-node -r tsconfig-paths/register --ignore 'hnswlib-vs-*' src/index.ts",
"start:verbose": "VERBOSE=true yarn start",
"check-types": "tsc --noEmit",
"lint": "eslint --fix \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@supabase/supabase-js": "^2.38.2",
"@types/pg": "^8.10.9",
"date-fns": "^2.30.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"gpt-3-encoder": "^1.1.4",
"nodemon": "^3.0.1",
"openai": "^4.12.4",
"pg": "^8.11.3",
"pg-promise": "^11.5.4",
"tiktoken": "^1.0.10",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/express": "^4.17.20",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"tsconfig-paths": "^4.2.0"
}
}