mbarnig commited on
Commit
2b4b081
·
verified ·
1 Parent(s): 6a0b17e

Upload package.json

Browse files
Files changed (1) hide show
  1. package.json +64 -0
package.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "next-app-template",
3
+ "version": "0.0.1",
4
+ "private": true,
5
+ "scripts": {
6
+ "dev": "PORT=7860 next dev --turbo",
7
+ "build": "PORT=7860 next build",
8
+ "start": "PORT=7860 next start",
9
+ "lint": "eslint . --ext .ts,.tsx -c .eslintrc.json --fix"
10
+ },
11
+ "dependencies": {
12
+ "@ai-sdk/openai": "^0.0.34",
13
+ "@heygen/streaming-avatar": "^1.0.11",
14
+ "@nextui-org/button": "2.0.34",
15
+ "@nextui-org/code": "2.0.29",
16
+ "@nextui-org/input": "2.2.2",
17
+ "@nextui-org/kbd": "2.0.30",
18
+ "@nextui-org/link": "2.0.32",
19
+ "@nextui-org/listbox": "2.1.21",
20
+ "@nextui-org/navbar": "2.0.33",
21
+ "@nextui-org/react": "^2.4.2",
22
+ "@nextui-org/snippet": "2.0.38",
23
+ "@nextui-org/switch": "2.0.31",
24
+ "@nextui-org/system": "2.2.1",
25
+ "@nextui-org/theme": "2.2.5",
26
+ "@phosphor-icons/react": "^2.1.5",
27
+ "@react-aria/ssr": "3.9.4",
28
+ "@react-aria/visually-hidden": "3.8.12",
29
+ "@uiw/codemirror-extensions-langs": "^4.22.1",
30
+ "@uiw/react-codemirror": "^4.22.1",
31
+ "ai": "^3.2.15",
32
+ "clsx": "2.1.1",
33
+ "framer-motion": "~11.1.1",
34
+ "intl-messageformat": "^10.5.0",
35
+ "next": "14.2.4",
36
+ "next-themes": "^0.2.1",
37
+ "openai": "^4.52.1",
38
+ "react": "18.3.1",
39
+ "react-dom": "18.3.1",
40
+ "zod": "^3.23.8"
41
+ },
42
+ "devDependencies": {
43
+ "@types/node": "20.5.7",
44
+ "@types/react": "18.3.3",
45
+ "@types/react-dom": "18.3.0",
46
+ "@typescript-eslint/eslint-plugin": "7.2.0",
47
+ "@typescript-eslint/parser": "7.2.0",
48
+ "autoprefixer": "10.4.19",
49
+ "eslint": "^8.57.0",
50
+ "eslint-config-next": "14.2.1",
51
+ "eslint-config-prettier": "^8.2.0",
52
+ "eslint-plugin-import": "^2.26.0",
53
+ "eslint-plugin-jsx-a11y": "^6.4.1",
54
+ "eslint-plugin-node": "^11.1.0",
55
+ "eslint-plugin-prettier": "^5.1.3",
56
+ "eslint-plugin-react": "^7.23.2",
57
+ "eslint-plugin-react-hooks": "^4.6.0",
58
+ "eslint-plugin-unused-imports": "^3.2.0",
59
+ "postcss": "8.4.38",
60
+ "tailwind-variants": "0.1.20",
61
+ "tailwindcss": "3.4.3",
62
+ "typescript": "5.0.4"
63
+ }
64
+ }