Spaces:
Build error
Build error
Mehdi commited on
Upload package.json with huggingface_hub
Browse files- package.json +50 -0
package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "ghadirsync-ai",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"private": true,
|
| 5 |
+
"scripts": {
|
| 6 |
+
"dev": "next dev",
|
| 7 |
+
"build": "next build",
|
| 8 |
+
"start": "next start",
|
| 9 |
+
"lint": "next lint"
|
| 10 |
+
},
|
| 11 |
+
"dependencies": {
|
| 12 |
+
"next": "14.0.4",
|
| 13 |
+
"react": "^18",
|
| 14 |
+
"react-dom": "^18",
|
| 15 |
+
"react-icons": "^4.12.0",
|
| 16 |
+
"framer-motion": "^10.16.16",
|
| 17 |
+
"react-markdown": "^9.0.1",
|
| 18 |
+
"react-syntax-highlighter": "^15.5.0",
|
| 19 |
+
"prismjs": "^1.29.0",
|
| 20 |
+
"react-hot-toast": "^2.4.1",
|
| 21 |
+
"axios": "^1.6.2",
|
| 22 |
+
"socket.io-client": "^4.7.4",
|
| 23 |
+
"monaco-editor": "^0.45.0",
|
| 24 |
+
"@monaco-editor/react": "^4.6.0",
|
| 25 |
+
"react-dropzone": "^14.2.3",
|
| 26 |
+
"react-select": "^5.8.0",
|
| 27 |
+
"date-fns": "^2.30.0",
|
| 28 |
+
"uuid": "^9.0.1",
|
| 29 |
+
"js-cookie": "^3.0.5",
|
| 30 |
+
"react-speech-kit": "^3.0.1",
|
| 31 |
+
"react-webcam": "^7.1.1",
|
| 32 |
+
"canvas": "^2.11.2",
|
| 33 |
+
"ffmpeg-static": "^5.2.0",
|
| 34 |
+
"fluent-ffmpeg": "^2.1.2"
|
| 35 |
+
},
|
| 36 |
+
"devDependencies": {
|
| 37 |
+
"typescript": "^5",
|
| 38 |
+
"@types/node": "^20",
|
| 39 |
+
"@types/react": "^18",
|
| 40 |
+
"@types/react-dom": "^18",
|
| 41 |
+
"@types/uuid": "^9.0.7",
|
| 42 |
+
"@types/js-cookie": "^3.0.6",
|
| 43 |
+
"@types/fluent-ffmpeg": "^2.1.24",
|
| 44 |
+
"autoprefixer": "^10.0.1",
|
| 45 |
+
"postcss": "^8",
|
| 46 |
+
"tailwindcss": "^3.3.0",
|
| 47 |
+
"eslint": "^8",
|
| 48 |
+
"eslint-config-next": "14.0.4"
|
| 49 |
+
}
|
| 50 |
+
}
|