Initial commit from Create Next App

This commit is contained in:
Hydroxycarbamide 2022-11-21 10:01:12 +01:00
commit ad620fa308
14 changed files with 5473 additions and 0 deletions

22
package.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "profil-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"eslint": "8.28.0",
"eslint-config-next": "13.0.4",
"next": "13.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.3"
}
}