project scaffolding + day 1

This commit is contained in:
2022-05-19 21:38:18 +02:00
parent 99bb85eef1
commit cce9fa1606
17 changed files with 1560 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "daily-design",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"clsx": "^1.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "6"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.13",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"vite": "^2.9.9"
}
}