Initial Commit, final submission

This commit is contained in:
Eclypsed
2024-12-19 18:21:27 -05:00
commit 87f1c79481
29 changed files with 4126 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "cs343-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^22.9.3",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.14",
"postcss": "^8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"typescript": "~5.6.2",
"vite": "^5.4.9"
},
"dependencies": {
"idb": "^8.0.0",
"ky": "^1.7.2"
}
}