Spaces:
Build error
Build error
Upload package.json with huggingface_hub
Browse files- package.json +19 -0
package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "calculator-app",
|
| 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": "13.4.19",
|
| 13 |
+
"react": "18.2.0",
|
| 14 |
+
"react-dom": "18.2.0",
|
| 15 |
+
"autoprefixer": "10.4.16",
|
| 16 |
+
"postcss": "8.4.31",
|
| 17 |
+
"tailwindcss": "3.3.5"
|
| 18 |
+
}
|
| 19 |
+
}
|