Spaces:
Running
Running
Create package.json
Browse files- package.json +24 -0
package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "hf-node-app",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"description": "A simple Express server for Hugging Face Spaces",
|
| 5 |
+
"main": "app.js",
|
| 6 |
+
"scripts": {
|
| 7 |
+
"start": "node all"
|
| 8 |
+
},
|
| 9 |
+
"author": "",
|
| 10 |
+
"license": "MIT",
|
| 11 |
+
"dependencies": {
|
| 12 |
+
"body-parser": "^1.19.0",
|
| 13 |
+
"express": "5.2.1",
|
| 14 |
+
"cors": "2.8.5",
|
| 15 |
+
"uuid": "13.0.0",
|
| 16 |
+
"axios": "1.13.2",
|
| 17 |
+
"jsonwebtoken": "9.0.3",
|
| 18 |
+
"ws": "8.18.2",
|
| 19 |
+
"http": "0.0.1-security",
|
| 20 |
+
|
| 21 |
+
"@supabase/supabase-js": "2.97.0",
|
| 22 |
+
"dotenv": "17.2.3"
|
| 23 |
+
}
|
| 24 |
+
}
|