Add client

This commit is contained in:
2021-11-10 18:12:17 +01:00
commit 4faa5a53f7
14 changed files with 3176 additions and 0 deletions

22
src/client/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "client",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "12.0.3",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.34",
"eslint": "7",
"eslint-config-next": "12.0.3",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}