Skip to content

Commit 4eba430

Browse files
committed
feat: created json api conversion POST logic
1 parent d78e537 commit 4eba430

File tree

4 files changed

+262
-4
lines changed

4 files changed

+262
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@ yarn-error.log*
3434
# typescript
3535
*.tsbuildinfo
3636
next-env.d.ts
37+
38+
.idea

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,20 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"next": "14.2.3",
13+
"openai": "^4.49.1",
1214
"react": "^18",
1315
"react-dom": "^18",
14-
"next": "14.2.3"
16+
"zod": "^3.23.8"
1517
},
1618
"devDependencies": {
17-
"typescript": "^5",
1819
"@types/node": "^20",
1920
"@types/react": "^18",
2021
"@types/react-dom": "^18",
22+
"eslint": "^8",
23+
"eslint-config-next": "14.2.3",
2124
"postcss": "^8",
2225
"tailwindcss": "^3.4.1",
23-
"eslint": "^8",
24-
"eslint-config-next": "14.2.3"
26+
"typescript": "^5"
2527
}
2628
}

0 commit comments

Comments
 (0)