-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.12 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
{
"name": "chat-dbt",
"version": "0.5.0",
"description": "Interact with your database using human queries through OpenAI GPT",
"license": "MIT",
"keywords": [
"ChatGPT",
"OpenAI",
"postgres",
"postgresql",
"clickhouse",
"SQL",
"database",
"db",
"natural-language"
],
"author": "Pierre-Louis Mercereqau",
"homepage": "https://github.com/plmercereau/chat-dbt",
"bugs": "https://github.com/plmercereau/chat-dbt/issues",
"repository": {
"type": "git",
"url": "https://github.com/plmercereau/chat-dbt.git"
},
"files": [
"dist",
"!dist/web/cache",
"!dist/web/trace",
"README.md"
],
"scripts": {
"dev:cli": "node dev-cli.js",
"dev:web": "next dev",
"build": "run-p build:*",
"build:cli": "node build-cli.js",
"build:web": "next build",
"lint": "next lint",
"changeset": "changeset",
"publish": "changeset publish"
},
"bin": "./dist/index.mjs",
"dependencies": {
"@clickhouse/client": "^0.0.15",
"@commander-js/extra-typings": "^10.0.3",
"@mantine/core": "^6.0.8",
"@mantine/next": "^6.0.8",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"csv-stringify": "^6.3.2",
"dotenv": "^16.0.3",
"inquirer": "^9.1.5",
"next": "13.3.0",
"open": "^9.1.0",
"openai": "^3.2.1",
"ora": "^6.3.0",
"postgres": "^3.3.4",
"tmp": "^0.2.1",
"tty-table": "^4.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@mantine/form": "^6.0.8",
"@mantine/hooks": "^6.0.8",
"@mantine/prism": "^6.0.8",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.52",
"@tabler/icons-react": "^2.16.0",
"@types/inquirer": "^9.0.3",
"@types/node": "18.15.11",
"@types/pg": "^8.6.6",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"@types/tmp": "^0.2.3",
"esbuild": "^0.17.17",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"tsx": "^3.12.6",
"typescript": "5.0.4"
}
}