Spaces:
Build error
Build error
Upload package.json with huggingface_hub
Browse files- package.json +30 -0
package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "google-style-login",
|
| 3 |
+
"version": "0.1.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.5.6",
|
| 13 |
+
"react": "18.2.0",
|
| 14 |
+
"react-dom": "18.2.0",
|
| 15 |
+
"axios": "^1.6.0",
|
| 16 |
+
"js-cookie": "^3.0.5"
|
| 17 |
+
},
|
| 18 |
+
"devDependencies": {
|
| 19 |
+
"@types/node": "^20.8.0",
|
| 20 |
+
"@types/react": "^18.2.0",
|
| 21 |
+
"@types/react-dom": "^18.2.0",
|
| 22 |
+
"@types/js-cookie": "^3.0.4",
|
| 23 |
+
"autoprefixer": "^10.4.16",
|
| 24 |
+
"eslint": "^8.51.0",
|
| 25 |
+
"eslint-config-next": "13.5.6",
|
| 26 |
+
"postcss": "^8.4.31",
|
| 27 |
+
"tailwindcss": "^3.3.5",
|
| 28 |
+
"typescript": "^5.2.2"
|
| 29 |
+
}
|
| 30 |
+
}
|