Created the package.json & installed all needed dependencies

This commit is contained in:
2022-09-11 21:01:47 +02:00
parent 8affec1d10
commit bb6002af4a
2 changed files with 752 additions and 0 deletions

21
package.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"vite": "^3.1.0"
}
}