Created the admin package.json & yarn.lock

This commit is contained in:
2022-12-27 15:13:36 +01:00
parent 8597c66a4e
commit 3ced10ce3a
2 changed files with 923 additions and 0 deletions

24
admin/package.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "admin",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.57.1"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.1",
"vite": "^3.0.7"
}
}