TECH;Initial commit

This commit is contained in:
Roman Jaroš 2022-06-28 19:50:51 +02:00
commit c254cd6273
16 changed files with 5509 additions and 0 deletions

24
package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "12.2.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"eslint": "8.18.0",
"eslint-config-next": "12.2.0",
"typescript": "4.7.4"
}
}