frontend hello world

This commit is contained in:
Stepan Usatiuk
2023-12-15 19:41:01 +01:00
parent d18b7f2b3e
commit 1e2c667bf4
9 changed files with 3804 additions and 0 deletions

26
client/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "yclient",
"version": "0.0.1",
"private": true,
"author": "Stepan Usatiuk",
"source": "src/index.html",
"scripts": {
"start": "parcel",
"build": "parcel build"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@parcel/transformer-typescript-tsc": "^2.10.3",
"@parcel/validator-typescript": "^2.10.3",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"parcel": "^2.10.3",
"prettier": "^3.1.1",
"process": "^0.11.10",
"typescript": "^5.3.3"
}
}