Spaces:
Runtime error
Runtime error
Create package.json
Browse files- package.json +14 -0
package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "chatbot-website",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"description": "A simple chatbot website using Hugging Face Inference API",
|
| 5 |
+
"main": "server.js",
|
| 6 |
+
"scripts": {
|
| 7 |
+
"start": "node servermain.js"
|
| 8 |
+
},
|
| 9 |
+
"dependencies": {
|
| 10 |
+
"@huggingface/inference": "^2.0.0",
|
| 11 |
+
"express": "^4.17.1",
|
| 12 |
+
"dotenv": "^16.0.0"
|
| 13 |
+
}
|
| 14 |
+
}
|