-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "openai-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "tap -- --ts \"test/**/*.test.ts\""
},
"dependencies": {
"@google-cloud/aiplatform": "^3.7.0",
"@google-cloud/vertexai": "^0.5.0",
"@json2csv/node": "^7.0.3",
"commander": "^11.1.0",
"csv-parse": "^5.5.2",
"dotenv": "^16.3.1",
"fuse.js": "^7.0.0",
"next": "^14.0.3",
"openai": "^4.20.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"selenium-webdriver": "^4.15.0",
"tiktoken": "^1.0.11"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/selenium-webdriver": "^4.1.20",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"tap": "^18.7.1",
"typescript": "^5.3.2"
},
"type": "module"
}