-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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": "gpt-test",
"version": "1.0.0",
"description": "Simple API to test OpenAI's GPT-4 model",
"keywords": [
"openai",
"gpt-4",
"typescript",
"express"
],
"author": "floatrx <[email protected]>",
"main": "index.ts",
"scripts": {
"dev": "bun --watch index.ts",
"docker:build": "bun tools/docker.ts --build",
"docker:run": "bun tools/docker.ts --run",
"docker:push": "bun tools/docker.ts --push",
"pretty": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bun": "^1.1.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.2.0",
"husky": "^9.0.11",
"openai": "^4.0.0",
"prettier": "^3.2.5",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"typescript": "^5.4.5"
},
"license": "ISC"
}