Created Next Js Project

This commit is contained in:
brausjonas
2023-05-02 14:47:34 +02:00
parent a67e293cdc
commit 975b0fca96
22 changed files with 4637 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"name": "anwendung",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"autoprefixer": "10.4.14",
"eslint": "8.39.0",
"eslint-config-next": "13.3.4",
"next": "13.3.4",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
}
}